// // PwFindViewController.m // OneCable // // Created by nComz on 2017. 3. 31.. // Copyright © 2017년 ntels. All rights reserved. // #import "PwFindViewController.h" #import "CustomButton.h" #import "CustomLabel.h" #import "CustomTextField.h" @interface PwFindViewController () @end @implementation PwFindViewController - (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:@"%@", @"/ 3"]]; } - (IBAction)btnCancelTouched:(id)sender { [self dismissViewControllerAnimated:YES completion:nil]; } - (IBAction)btnNextTouched:(id)sender { UIViewController *vc = [CommonUtil instantiateViewControllerWithIdentifier:@"PwAnswerViewController" storyboardName:@"SignUp"]; [self.navigationController pushViewController:vc animated:YES]; } @end