// // IdFindViewController.m // OneCable // // Created by nComz on 2017. 3. 31.. // Copyright © 2017년 ntels. All rights reserved. // #import "IdFindViewController.h" #import "CustomButton.h" #import "CustomLabel.h" #import "CustomTextField.h" @interface IdFindViewController () @end @implementation IdFindViewController - (void)viewDidLoad { [super viewDidLoad]; [self initUI]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; } - (void)initUI { [self.navigationController.navigationBar setHidden:YES]; self.navigationController.interactivePopGestureRecognizer.enabled = NO; [_lblStep setColor:kUITextColor03 text:[NSString stringWithFormat:@"%@", @"/ 2"]]; } - (IBAction)btnCancelTouched:(id)sender { [self dismissViewControllerAnimated:YES completion:nil]; } - (IBAction)btnNextTouched:(id)sender { UIViewController *vc = [CommonUtil instantiateViewControllerWithIdentifier:@"IdFindCompleteViewController" storyboardName:@"SignUp"]; [self.navigationController pushViewController:vc animated:YES]; } @end