| 1234567891011121314151617181920212223 |
- //
- // TempPwViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 3. 31..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomButton;
- @class CustomLabel;
- @class CustomTextField;
- @interface TempPwViewController : JDViewController
- @property (weak, nonatomic) IBOutlet CustomTextField *txtPwInput;
- @property (weak, nonatomic) IBOutlet CustomTextField *txtPwReInput;
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
- @property (weak, nonatomic) IBOutlet CustomButton *btnNext;
- @end
|