| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- //
- // IdFindCompleteViewController.m
- // OneCable
- //
- // Created by nComz on 2017. 3. 31..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "IdFindCompleteViewController.h"
- #import "CustomLabel.h"
- #import "CustomButton.h"
- #import "JDJSONModel.h"
- #import "RequestHandler.h"
- NSString *userName;
- @interface IdFindCompleteViewController ()
- @end
- /**
-
- 유저아이디 부분은 kUITextColor01 색상으로 출력
-
- **/
- @implementation IdFindCompleteViewController
- - (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"]];
-
-
- _lblUserName.text = [NSString stringWithFormat:@"%@%@", _nickName, @"님의 아이디는"];
- _lblUserId.text = _memberId;
-
- }
- - (IBAction)btnPwFindTouched:(id)sender {
-
- UIViewController *vc = [CommonUtil instantiateViewControllerWithIdentifier:@"PwFindViewController" storyboardName:@"SignUp"];
-
- [self.navigationController pushViewController:vc animated:YES];
- }
- - (IBAction)btnConfirmTouched:(id)sender {
- [self dismissViewControllerAnimated:YES completion:nil];
- }
- @end
|