| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // HomeHubSearchFailViewController.m
- // OneCable
- //
- // Created by nComz on 2017. 5. 11..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "HomeHubSearchFailViewController.h"
- #import "HomeHubSearchViewController.h"
- @interface HomeHubSearchFailViewController () <BLEServiceHandlerDelegate> {
- BLEServiceHandler *bleService;
- }
- @end
- @implementation HomeHubSearchFailViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
-
- bleService = [BLEServiceHandler sharedManager];
- bleService.delegate = self;
- }
- - (IBAction)btnAgainSearchTouched:(id)sender {
- [self.navigationController popViewControllerAnimated:YES];
- }
- - (IBAction)btnBackTouched:(id)sender {
-
- [self.navigationController popToRootViewControllerAnimated:YES];
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
-
- }
- - (void)BLEDisConnected:(BTLEDeivceModel *)info {
-
- [[JDFacade facade] toast:@"홈허브와 연결할 수 없습니다."];
- [self.navigationController popToRootViewControllerAnimated:YES];
-
- }
- @end
|