SettingsPasswdInputViewController.h 571 B

12345678910111213141516171819202122
  1. //
  2. // SettingsPasswdInputViewController.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 4. 26..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomLabel;
  10. @class CustomButton;
  11. @class CustomTextField;
  12. @interface SettingsPasswdInputViewController : JDViewController
  13. @property (weak, nonatomic) IBOutlet CustomTextField *txtInputPasswd; // 비밀번호 입력
  14. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 버튼
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnNext; // 다음 버튼
  16. @end