24 lines
581 B
Objective-C
24 lines
581 B
Objective-C
//
|
|
// XPIAPRechargeHeadCell.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2023/9/11.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RechargeListModel.h"
|
|
@class XPIAPRechargeHeadCell;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@protocol XPIAPRechargeHeadCellDelegate <NSObject>
|
|
|
|
- (void)xpIAPRechargeHeadCell:(XPIAPRechargeHeadCell *)cycleScrollView didSelectItemAtIndex:(NSInteger)index;
|
|
|
|
@end
|
|
@interface XPIAPRechargeHeadCell : UICollectionViewCell
|
|
//////充值banner位
|
|
@property(nonatomic,copy) NSArray *bannerList;
|
|
@property(nonatomic,weak) id<XPIAPRechargeHeadCellDelegate>delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|