CertificationViewController.h 873 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // CertificationViewController.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 3. 17..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomButton;
  10. @class CustomTextField;
  11. @interface CertificationViewController : JDViewController
  12. @property (weak, nonatomic) IBOutlet CustomLabel *lblStep;
  13. @property (weak, nonatomic) IBOutlet CustomTextField *txtPhoneNum;
  14. @property (weak, nonatomic) IBOutlet CustomTextField *txtCertifyInput;
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnSend;
  16. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *btnSendHeight;
  17. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *viewHeight;
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblMessage;
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  20. @property (weak, nonatomic) IBOutlet CustomButton *btnNext;
  21. @end