21 lines
367 B
Objective-C
21 lines
367 B
Objective-C
//
|
|
// XPRoomHalfMessageView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/5/29.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomHalfMessageView : UIView
|
|
///私聊的用户ID
|
|
@property (nonatomic,copy) NSString *chatUserId;
|
|
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame controller:(UIViewController *)controller;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|