// // 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 BOOL isPresente; @property BOOL moveToMain; @property (weak, nonatomic) IBOutlet CustomTextField *txtInputNum; // 번호 입력 @property (weak, nonatomic) IBOutlet CustomTextField *txtInputAuthNum; //인증 번호 입력 @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 *btnConfirm; // 확인 버튼 @end