ThingsAddStartViewController.h 801 B

123456789101112131415161718192021222324252627282930313233
  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 CustomLabel;
  10. @class CustomButton;
  11. @interface ThingsAddStartViewController : JDViewController
  12. #pragma mark - Properties
  13. @property (weak, nonatomic) NSDictionary *addableDevice;
  14. @property (weak, nonatomic) IBOutlet UIView *maskView;
  15. @property (weak, nonatomic) IBOutlet UIView *popView;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblSensorName;
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblManufacturer;
  18. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
  19. #pragma mark - Instance Methods
  20. - (IBAction)btnAddTouched:(id)sender;
  21. - (IBAction)btnCancelTouched:(id)sender;
  22. @end