Files
2026-07-13 12:35:01 +08:00

34 lines
710 B
Objective-C

//
// TLMomentComment.h
// TLChat
//
// Created by libokun on 16/4/8.
// Copyright © 2016年 李伯坤. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "TLUser.h"
@interface TLMomentCommentFrame : NSObject
@property (nonatomic, assign) CGFloat height;
@end
@interface TLMomentComment : NSObject
/// 作者
@property (nonatomic, strong) TLUser *user;
/// 回复的用户
@property (nonatomic, strong) TLUser *toUser;
@property (nonatomic, strong) NSString *content;
@property (nonatomic, strong, readonly) NSAttributedString *attrContent;
@property (nonatomic, copy) void (^userClickAction)(TLUser *user);
@property (nonatomic, strong) TLMomentCommentFrame *commentFrame;
@end