PwFindViewController.m 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // PwFindViewController.m
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 3. 31..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "PwFindViewController.h"
  9. #import "CustomButton.h"
  10. #import "CustomLabel.h"
  11. #import "CustomTextField.h"
  12. @interface PwFindViewController ()
  13. @end
  14. @implementation PwFindViewController
  15. - (void)viewDidLoad {
  16. [super viewDidLoad];
  17. [self initUI];
  18. }
  19. - (void)didReceiveMemoryWarning {
  20. [super didReceiveMemoryWarning];
  21. }
  22. - (void)initUI {
  23. [self.navigationController.navigationBar setHidden:YES];
  24. self.navigationController.interactivePopGestureRecognizer.enabled = NO;
  25. [_lblStep setColor:kUITextColor03 text:[NSString stringWithFormat:@"%@", @"/ 3"]];
  26. }
  27. - (IBAction)btnCancelTouched:(id)sender {
  28. [self dismissViewControllerAnimated:YES completion:nil];
  29. }
  30. - (IBAction)btnNextTouched:(id)sender {
  31. UIViewController *vc = [CommonUtil instantiateViewControllerWithIdentifier:@"PwAnswerViewController" storyboardName:@"SignUp"];
  32. [self.navigationController pushViewController:vc animated:YES];
  33. }
  34. @end