30 lines
713 B
Objective-C
30 lines
713 B
Objective-C
//
|
|
// XPHomeBannerTableViewCell.h
|
|
// YuMi
|
|
//
|
|
// Created by YuMi on 2022/2/21.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class HomeBannerInfoModel, XPHomeBannerTableViewCell;
|
|
|
|
@protocol XPHomeBannerTableViewCellDelegate <NSObject>
|
|
|
|
///点击了某个banner
|
|
- (void)xPHomeBannerTableViewCell:(XPHomeBannerTableViewCell *)view didClickBanner:(HomeBannerInfoModel *)info;
|
|
|
|
@end
|
|
|
|
@interface XPHomeBannerTableViewCell : UITableViewCell
|
|
@property (nonatomic,strong) NSArray<HomeBannerInfoModel *> *bannerList;
|
|
///代理
|
|
@property (nonatomic,weak) id<XPHomeBannerTableViewCellDelegate> delegate;
|
|
///是否个人中心banner
|
|
@property (nonatomic, assign) BOOL isMineViewBanner;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|