| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // HomeHubSearchFailViewController.m
- // OneCable
- //
- // Created by nComz on 2017. 5. 11..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "HomeHubSearchFailViewController.h"
- #import "HomeHubSearchViewController.h"
- @interface HomeHubSearchFailViewController ()
- @end
- @implementation HomeHubSearchFailViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- }
- - (IBAction)btnAgainSearchTouched:(id)sender {
- [self.navigationController popViewControllerAnimated:YES];
- }
- - (IBAction)btnBackTouched:(id)sender {
-
- [self.navigationController popToRootViewControllerAnimated:YES];
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
-
- }
- @end
|