// // TLMomentDetail.h // TLChat // // Created by libokun on 16/4/8. // Copyright © 2016年 李伯坤. All rights reserved. // #import @interface TLMomentDetailFrame : NSObject @property (nonatomic, assign) CGFloat height; @property (nonatomic, assign) CGFloat heightText; @property (nonatomic, assign) CGFloat heightImages; @end @interface TLMomentDetail : NSObject @property (nonatomic, strong) NSString *text; @property (nonatomic, strong) NSMutableArray *images; @property (nonatomic, strong) TLMomentDetailFrame *detailFrame; @end