| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // 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
|