CNWitnessSearchCell.h
425 Bytes
//
// CNWitnessSearchCell.h
// CNLiveVideoClassifyKit
//
// Created by CNLive on 2022/6/16.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface CNWitnessSearchCell : UICollectionViewCell
@property (nonatomic, copy)void (^deleteBlock)(NSString *str);
/// 赋值
/// @param str 字符串
/// @param section 当前section
- (void)setString:(NSString *)str section:(NSInteger)section;
@end
NS_ASSUME_NONNULL_END