ThingsAddStartViewController.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. @class CustomImageView;
  13. @interface ThingsAddStartViewController : JDViewController
  14. #pragma mark - Properties
  15. @property (copy, nonatomic) DeviceModel *addDevice;
  16. @property (copy, nonatomic) DeviceModel *selectHub;
  17. @property (weak, nonatomic) NSDictionary *addableDevice;
  18. @property (weak, nonatomic) DeviceModel *removableDevice;
  19. @property (weak, nonatomic) NSArray *removableGroups;
  20. @property (weak, nonatomic) IBOutlet UIView *maskView;
  21. @property (weak, nonatomic) IBOutlet UIView *popView;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblSensorName; // 장치 명
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblManufacturer; // 제조사
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblComment; // 장치 추가시작 텍스트
  25. @property (weak, nonatomic) IBOutlet CustomLabel *lblInitComment; // 초기화 작업 진행 텍스트
  26. @property (weak, nonatomic) IBOutlet CustomImageView *imgThings; // 장치 이미지
  27. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
  28. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  29. @property (weak, nonatomic) IBOutlet CustomButton *btnDoStart;
  30. #pragma mark - Instance Methods
  31. - (IBAction)btnAddTouched:(id)sender;
  32. - (IBAction)btnCancelTouched:(id)sender;
  33. @end