// // JXSearchRecordCell.h // shiku_im // // Created by IMAC on 2019/9/6. // Copyright © 2019 Reese. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @class JXSearchRecordCell; @protocol JXSearchRecordCellDelegate - (void)deleteCell:(JXSearchRecordCell *)cell; @end @interface JXSearchRecordCell : UITableViewCell @property (nonatomic,strong)UIButton *deleteBtn; @property (nonatomic,weak)id delegate; - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier; @end NS_ASSUME_NONNULL_END