Files
yinmeng-ios/xplan-ios/Main/Home/View/Cell/XPHomeBannerTableViewCell.h
2022-08-05 13:04:10 +08:00

30 lines
720 B
Objective-C

//
// XPHomeBannerTableViewCell.h
// xplan-ios
//
// Created by 冯硕 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