XMLinkWallSwitchCell.h 646 B

123456789101112131415161718192021222324252627
  1. //
  2. // XMLinkWallSwitchCell.h
  3. // XWorld_General
  4. //
  5. // Created by SaturdayNight on 2018/10/22.
  6. // Copyright © 2018年 xiongmaitech. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "XMWallSwitchView.h"
  10. #import "SensorDeviceModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface XMLinkWallSwitchCell : UITableViewCell
  13. @property (nonatomic, copy) void (^longPressAction)(XMLinkWallSwitchCell *cell);
  14. @property (nonatomic,copy) void (^WallSwitchClickedAction)(NSInteger index,BOOL selected);
  15. @property (nonatomic, copy) XMWallSwitchView *wallSwitchView;
  16. - (void)configureCellWithModel:(SensorDeviceModel *)linkDev;
  17. @end
  18. NS_ASSUME_NONNULL_END