ThingsAddStartViewController.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // ThingsAddStartViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 11/13/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class DeviceModel;
  10. @class CustomLabel;
  11. @class CustomButton;
  12. @interface ThingsAddStartViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) NSDictionary *addableDevice;
  15. @property (weak, nonatomic) DeviceModel *removableDevice;
  16. @property (weak, nonatomic) NSArray *removableGroups;
  17. @property (weak, nonatomic) IBOutlet UIView *maskView;
  18. @property (weak, nonatomic) IBOutlet UIView *popView;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblSensorName;
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblManufacturer;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblComment;
  22. @property (weak, nonatomic) IBOutlet CustomButton *btnDoStart;
  23. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
  24. #pragma mark - Instance Methods
  25. - (IBAction)btnAddTouched:(id)sender;
  26. - (IBAction)btnCancelTouched:(id)sender;
  27. @end