ComReplyModel.h
872 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// ComReplyModel.h
// DreamSleep
//
// Created by peter on 2022/10/8.
//
#import <Foundation/Foundation.h>
#import "CommentModel.h"
#import "ReplyModel.h"
NS_ASSUME_NONNULL_BEGIN
FOUNDATION_EXTERN UIFont * const CommentContentFont;
/// 动态评论回复model
@interface ComReplyModel : NSObject
/// 评论model
@property (nonatomic, strong) CommentModel *commentModel;
/// 回复model
@property (nonatomic, strong) ReplyModel *replyModel;
- (NSString *)replyNickName;
+ (UIFont *)commentContentFont;
+ (UIFont *)replyNickNameFont;
+ (UIFont *)replyContentFont;
- (NSAttributedString *)replyContentAttriStr;
- (CGFloat)commentContentLeftMargin;
- (CGFloat)commentContentRightMargin;
- (CGFloat)commentContentHeight;
- (CGFloat)replyNickNameW;
- (CGSize)replyContentSize;
- (CGFloat)replyViewHeight;
- (CGFloat)commentCellHeight;
@end
NS_ASSUME_NONNULL_END