| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // HomeHubConnectWifiViewController.m
- // OneCable
- //
- // Created by nComz on 2017. 5. 11..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "HomeHubConnectWifiViewController.h"
- #import "HomeHubWifiSearchViewController.h"
- @interface HomeHubConnectWifiViewController ()
- @end
- @implementation HomeHubConnectWifiViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- }
- - (IBAction)btnAgainSearchTouched:(id)sender {
-
- HomeHubWifiSearchViewController *vc = [CommonUtil instantiateViewControllerWithIdentifier:@"HomeHubWifiSearchViewController" storyboardName:@"HomeHub"];
- [self presentViewController:vc animated:YES completion:nil];
- }
- - (IBAction)btnCloseTouched:(id)sender {
- [self dismissViewControllerAnimated:YES completion:nil];
- }
- @end
|