// // AlarmMessageCell.h // FunSDKDemo // // Created by wujiangbo on 2018/12/1. // Copyright © 2018 wujiangbo. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @protocol AlarmMessageCellDelegate //点击开始下载报警原图 -(void)beginDownlaodAlarmPic:(int)index; @end @interface AlarmMessageCell : UITableViewCell @property (nonatomic,strong) UILabel *detailLabel; //报警信息 @property (nonatomic,strong) UIImageView *pushImageView; //报警缩略图 @property (nonatomic,weak) id delegate; @property (nonatomic,assign) int index; @end NS_ASSUME_NONNULL_END