ThingsAddCameraViewController.h 1017 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // ThingsAddCameraViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/26/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDTableViewController.h"
  9. @class CustomTextField2;
  10. @class CustomLabel;
  11. @class CustomButton;
  12. @interface ThingsAddCameraViewController : JDTableViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblStep1Title;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblStep2Title;
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblStep3Title;
  18. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtFoscamId;
  19. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtFoscamPwd;
  20. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtFoscamURL;
  21. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtFoscamPort;
  22. @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
  23. #pragma mark - Instance Methods
  24. - (IBAction)btnConfrimTouched:(id)sender;
  25. @end