个人用户资料中心 私聊 跟随进房 关注

This commit is contained in:
fengshuo
2021-12-02 20:34:48 +08:00
parent f8fbbccc31
commit bdd744da32
25 changed files with 482 additions and 107 deletions

View File

@@ -8,12 +8,19 @@
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class UserInfoModel, SDCycleScrollView;
@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