DeviceconfigTableViewCell.h 534 B

123456789101112131415161718192021222324252627
  1. //
  2. // DeviceconfigTableViewCell.h
  3. // FunSDKDemo
  4. //
  5. // Created by Levi on 2018/5/18.
  6. // Copyright © 2018年 Levi. All rights reserved.
  7. //
  8. /**
  9. 设备配置Cell
  10. */
  11. #import <UIKit/UIKit.h>
  12. @interface DeviceconfigTableViewCell : UITableViewCell
  13. //设备配置FunSDKLogo
  14. @property (nonatomic, strong) UIImageView *logoImageView;
  15. //设备配置功能Lab(包含编码配置,报警配置等)
  16. @property (nonatomic, strong) UILabel *Labeltext;
  17. //设备配置功能说明Lab
  18. @property (nonatomic, strong) UILabel *detailLabel;
  19. @end