| 12345678910111213141516171819202122232425 |
- //
- // SettingsNumChangeViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 4. 19..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @class CustomButton;
- @class CustomTextField;
- @interface SettingsNumChangeViewController : JDViewController
- @property (weak, nonatomic) IBOutlet CustomTextField *txtInputNum; // 번호 입력
- @property (weak, nonatomic) IBOutlet CustomButton *btnSend; // 인증번호 전송 버튼
- @property (weak, nonatomic) IBOutlet CustomLabel *lblMessage; // 인증번호 전송 텍스트
- @property (weak, nonatomic) IBOutlet CustomLabel *lblRemainTime; // 남은시간 표시
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 버튼
- @property (weak, nonatomic) IBOutlet CustomButton *btnNext; // 다음 버튼
- @end
|