| 12345678910111213141516171819202122 |
- //
- // SettingsPasswdInputViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 4. 26..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @class CustomButton;
- @class CustomTextField;
- @interface SettingsPasswdInputViewController : JDViewController
- @property (weak, nonatomic) IBOutlet CustomTextField *txtInputPasswd; // 비밀번호 입력
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 버튼
- @property (weak, nonatomic) IBOutlet CustomButton *btnNext; // 다음 버튼
- @end
|