27 lines
663 B
Objective-C
27 lines
663 B
Objective-C
//
|
|
// XPMineHeaderView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/9/22.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class UserInfoModel, SDCycleScrollView,XPMineUserInfoHeaderView;
|
|
@protocol XPMineUserInfoHeaderViewDelegate <NSObject>
|
|
|
|
- (void)xPMineUserInfoHeaderView:(XPMineUserInfoHeaderView *)view didClickGoToRoom:(NSString *)roomUid;
|
|
|
|
@end
|
|
|
|
@interface XPMineUserInfoHeaderView : UIView
|
|
@property (nonatomic,strong) UserInfoModel *userInfo;
|
|
///轮播图
|
|
@property (nonatomic,strong, readonly) SDCycleScrollView *cycleScrollView;
|
|
///代理
|
|
@property (nonatomic,weak) id<XPMineUserInfoHeaderViewDelegate> delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|