SensorListCell.h 605 B

123456789101112131415161718192021222324252627
  1. //
  2. // SensorListCell.h
  3. // FunSDKDemo
  4. //
  5. // Created by Megatron on 2019/3/25.
  6. // Copyright © 2019 Megatron. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^SensorSwitchStatueCallBack)(int statue,int indexRow);
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface SensorListCell : UITableViewCell
  12. @property (nonatomic,strong) UILabel *lbTitle;
  13. @property (nonatomic,strong) UISwitch *statueSwitch;
  14. @property (nonatomic,assign) NSInteger indexRow;
  15. @property (nonatomic,copy) SensorSwitchStatueCallBack statueAction;
  16. - (void)listenStatue:(SensorSwitchStatueCallBack)action;
  17. @end
  18. NS_ASSUME_NONNULL_END