| 123456789101112131415161718192021222324252627282930 |
- //
- // SearchViewController.h
- // AICity
- //
- // Created by 刘伟伟 on 2023/7/8.
- // Copyright © 2023 wei.z. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface SearchViewController : UIViewController
- @end
- @interface SearchTitCell : UICollectionViewCell
- @property (nonatomic, strong) void(^delBlock)(void);
- @end
- @interface SearchItemCell : UICollectionViewCell
- @property(nonatomic,strong)UILabel *nameLab;
- @end
- @interface FoundCell : UICollectionViewCell
- @property(nonatomic,strong)NSArray *hotkeyDataArr;
- @property (nonatomic, strong) void(^tapBlock)(NSString *str);
- @end
- @interface HotSearchCell : UICollectionViewCell
- @property(nonatomic,strong)NSArray *hotMoviesArr;
- @property (nonatomic, strong) void(^tapBlock)(int vid);
- @end
- NS_ASSUME_NONNULL_END
|