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