29 lines
520 B
Objective-C
29 lines
520 B
Objective-C
//
|
|
// XPSessionMessageHeadView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/3/11.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "UserInfoModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPSessionMessageHeadViewDelegate <NSObject>
|
|
|
|
- (void)onAvatarClick:(NSInteger)uid;
|
|
|
|
- (void)onFollowInRoom:(NSString *)roomUid;
|
|
|
|
@end
|
|
|
|
@interface XPSessionMessageHeadView : UIView
|
|
|
|
@property (nonatomic, strong) UserInfoModel *userInfo;
|
|
|
|
@property (nonatomic, weak) id<XPSessionMessageHeadViewDelegate> delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|