31 lines
569 B
Objective-C
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
|