| 1234567891011121314151617181920212223242526 |
- //
- // IdFindCompleteViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 3. 31..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @class CustomButton;
- @interface IdFindCompleteViewController : JDViewController
- @property (strong, nonatomic) NSString *memberId ;
- @property (strong, nonatomic) NSString *nickName ;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStep;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblUserId; // 사용자 아이디
- @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm; // 확인 버튼
- @property (weak, nonatomic) IBOutlet CustomButton *btnPwFind; // 비밀번호 찾기 버튼
- @property (weak, nonatomic) IBOutlet CustomLabel *lblUserName; // 사용자 명
- @end
|