| 123456789101112131415161718192021222324 |
- //
- // UserNameSetViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 3. 17..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomButton;
- @class CustomTextField;
- @interface UserNameSetViewController : JDViewController
- @property (strong, nonatomic) SignUpModel *signUpModel;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStep; // 스텝 번호 텍스트
- @property (weak, nonatomic) IBOutlet CustomTextField *txtNickInput; // 닉네임 입력 박스
- @property (weak, nonatomic) IBOutlet CustomButton *btnAfter; // 나중에 버튼
- @property (weak, nonatomic) IBOutlet CustomButton *btnNext; // 다음 버튼
- @end
|