ThingsAddStartViewController.h 1.4 KB

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