AlarmMessageCell.h 687 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // AlarmMessageCell.h
  3. // FunSDKDemo
  4. //
  5. // Created by wujiangbo on 2018/12/1.
  6. // Copyright © 2018 wujiangbo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol AlarmMessageCellDelegate <NSObject>
  11. //点击开始下载报警原图
  12. -(void)beginDownlaodAlarmPic:(int)index;
  13. @end
  14. @interface AlarmMessageCell : UITableViewCell
  15. @property (nonatomic,strong) UILabel *detailLabel; //报警信息
  16. @property (nonatomic,strong) UIImageView *pushImageView; //报警缩略图
  17. @property (nonatomic,weak) id <AlarmMessageCellDelegate> delegate;
  18. @property (nonatomic,assign) int index;
  19. @end
  20. NS_ASSUME_NONNULL_END