HomeHubConnectWifiViewController.m 864 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // HomeHubConnectWifiViewController.m
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 5. 11..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "HomeHubConnectWifiViewController.h"
  9. #import "HomeHubWifiSearchViewController.h"
  10. @interface HomeHubConnectWifiViewController ()
  11. @end
  12. @implementation HomeHubConnectWifiViewController
  13. - (void)viewDidLoad {
  14. [super viewDidLoad];
  15. }
  16. - (void)didReceiveMemoryWarning {
  17. [super didReceiveMemoryWarning];
  18. }
  19. - (IBAction)btnAgainSearchTouched:(id)sender {
  20. HomeHubWifiSearchViewController *vc = [CommonUtil instantiateViewControllerWithIdentifier:@"HomeHubWifiSearchViewController" storyboardName:@"HomeHub"];
  21. [self presentViewController:vc animated:YES completion:nil];
  22. }
  23. - (IBAction)btnCloseTouched:(id)sender {
  24. [self dismissViewControllerAnimated:YES completion:nil];
  25. }
  26. @end