MHCommentFrame.h 571 B

1234567891011121314151617181920212223
  1. //
  2. // MHCommentFrame.h
  3. // MHDevelopExample
  4. //
  5. // Created by CoderMikeHe on 17/2/8.
  6. // Copyright © 2017年 CoderMikeHe. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "MHComment.h"
  10. @interface MHCommentFrame : NSObject
  11. /** 内容尺寸 */
  12. @property (nonatomic , assign , readonly) CGRect textFrame;
  13. /** cell高度 */
  14. @property (nonatomic , assign , readonly) CGFloat cellHeight;
  15. /** 最大宽度 外界传递 */
  16. @property (nonatomic , assign) CGFloat maxW;
  17. /** 评论模型 外界传递 */
  18. @property (nonatomic , strong) MHComment *comment;
  19. @end