SettingsNumChangeViewController.h 981 B

12345678910111213141516171819202122232425262728
  1. //
  2. // SettingsNumChangeViewController.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 4. 19..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomLabel;
  10. @class CustomButton;
  11. @class CustomTextField;
  12. @interface SettingsNumChangeViewController : JDViewController
  13. @property BOOL isPresente;
  14. @property BOOL moveToMain;
  15. @property (weak, nonatomic) IBOutlet CustomTextField *txtInputNum; // 번호 입력
  16. @property (weak, nonatomic) IBOutlet CustomTextField *txtInputAuthNum; //인증 번호 입력
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnSend; // 인증번호 전송 버튼
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblMessage; // 인증번호 전송 텍스트
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblRemainTime; // 남은시간 표시
  20. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 버튼
  21. @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm; // 확인 버튼
  22. @end