IDSetViewController.h 587 B

123456789101112131415161718192021222324252627
  1. //
  2. // IDSetViewController.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 IDSetViewController : JDViewController
  12. @property (weak, nonatomic) IBOutlet CustomLabel *lblStep;
  13. @property (weak, nonatomic) IBOutlet CustomTextField *txtIdInput;
  14. @property (weak, nonatomic) IBOutlet CustomButton *btnOverlap;
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  16. @property (weak, nonatomic) IBOutlet CustomButton *btnNext;
  17. @end