| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //
- // 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;
-
- [_lblUserId setColor:kUITextColor01 text:[NSString stringWithFormat:@"%@", @"aaaaaaaaa11"]];
-
- [_lblStep setColor:kUITextColor03 text:[NSString stringWithFormat:@"%@", @"/ 2"]];
- }
- - (IBAction)btnConfirmTouched:(id)sender {
- [self dismissViewControllerAnimated:YES completion:nil];
- }
- @end
|