Files
yinmeng-ios/xplan-ios/Main/Home/View/XPPartyHeaderView.h
chenshuanglin 54cbbbbad0 派对页面
2023-03-07 18:51:04 +08:00

31 lines
569 B
Objective-C

//
// XPPartyHeaderView.h
// xplan-ios
//
// Created by XY on 2023/3/7.
//
#import <UIKit/UIKit.h>
#import "HomeBannerInfoModel.h"
NS_ASSUME_NONNULL_BEGIN
@protocol XPPartyHeaderViewDelegate <NSObject>
/// 点击banner
- (void)partyHeaderViewClickBanner:(HomeBannerInfoModel *)banner;
@end
@interface XPPartyHeaderView : UIView
@property (nonatomic, strong) NSArray<HomeBannerInfoModel*> *bannerList;
@property (nonatomic, weak) id<XPPartyHeaderViewDelegate> delegate;
/// 获取头部高度
+ (CGFloat)getPartyHeaderViewHeight;
@end
NS_ASSUME_NONNULL_END