Files
yinmeng-ios/xplan-ios/Main/Home/View/Cell/XPHomeBannerTableViewCell.h
2022-03-04 19:54:17 +08:00

27 lines
638 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;
@end
NS_ASSUME_NONNULL_END