JXSearchRecordCell.h 606 B

1234567891011121314151617181920212223242526
  1. //
  2. // JXSearchRecordCell.h
  3. // shiku_im
  4. //
  5. // Created by IMAC on 2019/9/6.
  6. // Copyright © 2019 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class JXSearchRecordCell;
  11. @protocol JXSearchRecordCellDelegate <NSObject>
  12. - (void)deleteCell:(JXSearchRecordCell *)cell;
  13. @end
  14. @interface JXSearchRecordCell : UITableViewCell
  15. @property (nonatomic,strong)UIButton *deleteBtn;
  16. @property (nonatomic,weak)id<JXSearchRecordCellDelegate> delegate;
  17. - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier;
  18. @end
  19. NS_ASSUME_NONNULL_END