123456789101112131415161718192021 |
- //
- // ASHomeBannerCell.h
- // Asteria
- //
- // Created by iOS on 2023/6/5.
- //
- #import <UIKit/UIKit.h>
- #import "ASJumpModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ASHomeBannerCell : UITableViewCell
- @property (nonatomic, copy) void(^selectCallBack)(NSInteger index, NSString *title, NSString *typeId,id model);
- - (void)showData:(NSArray <ASJumpModel*>*)arr;
- @end
- NS_ASSUME_NONNULL_END
|