| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // HomeHubUpdateCompleteViewController.m
- // OneCable
- //
- // Created by nComz on 2017. 5. 11..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "HomeHubUpdateCompleteViewController.h"
- @interface HomeHubUpdateCompleteViewController ()
- @end
- @implementation HomeHubUpdateCompleteViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- [self initUI];
- [self prepareViewDidLoad];
- }
- - (void)initUI {
-
- }
- - (void)prepareViewDidLoad {
-
-
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- }
- - (IBAction)btnConfirmTouched:(id)sender {
- UIViewController *vc = vc = [CommonUtil instantiateViewControllerWithIdentifier:@"HomeHubViewController" storyboardName:@"Main"];
-
- //멀티 홈허브일때
- if ([[JDFacade facade].loginUser isMultiHomeHub]) {
-
- vc = [CommonUtil instantiateViewControllerWithIdentifier:@"MultiHomeHubViewController" storyboardName:@"Main"];
- }
-
- [self.navigationController popToRootViewControllerAnimated:YES];
-
- // UINavigationController *m_navi =[[UINavigationController alloc]initWithRootViewController:vc];
- // [self presentViewController:m_navi animated:YES completion:nil];
-
- }
- @end
|