HomeHubUpdateGuideViewController.m 940 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // HomeHubUpdateGuideViewController.m
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 5. 11..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "HomeHubUpdateGuideViewController.h"
  9. #import "HomeHubUpdateStartViewController.h"
  10. @interface HomeHubUpdateGuideViewController ()
  11. @end
  12. @implementation HomeHubUpdateGuideViewController
  13. - (void)viewDidLoad {
  14. [super viewDidLoad];
  15. }
  16. - (IBAction)btnConfirmTouched:(id)sender {
  17. HomeHubUpdateStartViewController *vc = [CommonUtil instantiateViewControllerWithIdentifier:@"HomeHubUpdateStartViewController" storyboardName:@"HomeHub"];
  18. vc.updateType = _updateType;
  19. vc.hubInfo = _hubInfo;
  20. [self.navigationController pushViewController:vc animated:YES];
  21. }
  22. - (IBAction)btnCancelTouched:(id)sender {
  23. [self.navigationController popViewControllerAnimated:YES];
  24. }
  25. - (void)didReceiveMemoryWarning {
  26. [super didReceiveMemoryWarning];
  27. }
  28. @end