33 lines
654 B
Objective-C
33 lines
654 B
Objective-C
//
|
|
// XPWeekStarInfoView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/5/7.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class XPWeekStarRankUserModel;
|
|
|
|
@protocol XPWeekStarInfoViewDelegate <NSObject>
|
|
|
|
///周星榜点击
|
|
- (void)xPWeekStarInfoViewRankButtonClick;
|
|
|
|
@end
|
|
|
|
@interface XPWeekStarInfoView : UIView
|
|
|
|
///上周对应礼物的魅力榜第一
|
|
@property (nonatomic, strong) XPWeekStarRankUserModel *firstCharmRankUser;
|
|
///上周对应礼物豪气榜第一
|
|
@property (nonatomic, strong) XPWeekStarRankUserModel *firstLevelRankUser;
|
|
|
|
@property (nonatomic, weak) id<XPWeekStarInfoViewDelegate> delegate;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|