| 1234567891011121314151617181920212223242526272829 |
- //
- // CertificationViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 3. 17..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomButton;
- @class CustomTextField;
- @interface CertificationViewController : JDViewController
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStep;
- @property (weak, nonatomic) IBOutlet CustomTextField *txtPhoneNum;
- @property (weak, nonatomic) IBOutlet CustomTextField *txtCertifyInput;
- @property (weak, nonatomic) IBOutlet CustomButton *btnSend;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *btnSendHeight;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *viewHeight;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblMessage;
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
- @property (weak, nonatomic) IBOutlet CustomButton *btnNext;
- @end
|