SettingsPasswdSetViewController.h 566 B

123456789101112131415161718192021
  1. //
  2. // SettingsPasswdSetViewController.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 SettingsPasswdSetViewController : JDViewController
  13. @property (weak, nonatomic) IBOutlet CustomTextField *txtInputPasswd; // 비밀번호 입력
  14. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 버튼
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnSave; // 저장 버튼
  16. @end