HomeModeMovementViewController.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. //
  2. // HomeModeMovementViewController.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 4. 19..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomImageView;
  10. @class CustomLabel;
  11. @class CustomButton;
  12. @interface HomeModeMovementViewController : JDViewController
  13. @property (weak, nonatomic) NSArray<ModeModel> *modeArray;
  14. @property (weak, nonatomic) ModeModel *modeModel;
  15. @property (weak, nonatomic) IBOutlet CustomImageView *imgvModeWakeup; // 기상 이미지
  16. @property (weak, nonatomic) IBOutlet CustomImageView *imgvModeOuting; // 외출 이미지
  17. @property (weak, nonatomic) IBOutlet CustomImageView *imgvModeComing; // 귀가 이미지
  18. @property (weak, nonatomic) IBOutlet CustomImageView *imgvModeSleep; // 취침 이미지
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnModeWakeup; // 기상 버튼
  20. @property (weak, nonatomic) IBOutlet CustomButton *btnModeOuting; // 외출 버튼
  21. @property (weak, nonatomic) IBOutlet CustomButton *btnModeComing; // 귀가 버튼
  22. @property (weak, nonatomic) IBOutlet CustomButton *btnModeSleep; // 취침 버튼
  23. @end