IdFindCompleteViewController.m 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. //
  2. // IdFindCompleteViewController.m
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 3. 31..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "IdFindCompleteViewController.h"
  9. #import "CustomLabel.h"
  10. #import "CustomButton.h"
  11. #import "JDJSONModel.h"
  12. #import "RequestHandler.h"
  13. NSString *userName;
  14. @interface IdFindCompleteViewController ()
  15. @end
  16. /**
  17. 유저아이디 부분은 kUITextColor01 색상으로 출력
  18. **/
  19. @implementation IdFindCompleteViewController
  20. - (void)viewDidLoad {
  21. [super viewDidLoad];
  22. [self initUI];
  23. }
  24. - (void)didReceiveMemoryWarning {
  25. [super didReceiveMemoryWarning];
  26. }
  27. - (void)initUI {
  28. [self.navigationController.navigationBar setHidden:YES];
  29. self.navigationController.interactivePopGestureRecognizer.enabled = NO;
  30. [_lblStep setColor:kUITextColor03 text:[NSString stringWithFormat:@"%@", @"/ 2"]];
  31. _lblUserName.text = [NSString stringWithFormat:@"%@%@", _nickName, @"님의 아이디는"];
  32. _lblUserId.text = _memberId;
  33. }
  34. - (IBAction)btnPwFindTouched:(id)sender {
  35. UIViewController *vc = [CommonUtil instantiateViewControllerWithIdentifier:@"PwFindViewController" storyboardName:@"SignUp"];
  36. [self.navigationController pushViewController:vc animated:YES];
  37. }
  38. - (IBAction)btnConfirmTouched:(id)sender {
  39. [self dismissViewControllerAnimated:YES completion:nil];
  40. }
  41. @end