// // 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" 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; _lblUserName.text = [NSString stringWithFormat:@"%@%@",@"가나다",@"님의 아이디는"]; _lblUserId.text = @"abcdef12"; [_lblStep setColor:kUITextColor03 text:[NSString stringWithFormat:@"%@", @"/ 2"]]; } - (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