| 123456789101112131415161718192021222324 |
- //
- // SearchResultViewController.h
- // AICity
- //
- // Created by 刘伟伟 on 2023/7/13.
- // Copyright © 2023 wei.z. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface SearchResultViewController : UIViewController
- @property(nonatomic,strong)NSArray *searchResArr;
- @property(nonatomic,strong)NSString *txt;
- @end
- @interface searchResCell1 : UITableViewCell
- @property(nonatomic,assign)int imageCount;
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic, strong) void(^tapBlock)(int index);
- @property(nonatomic,strong)NSDictionary *data;
- @end
- NS_ASSUME_NONNULL_END
|