QMTextModel.h 398 B

1234567891011121314151617181920
  1. //
  2. // QMTextModel.h
  3. // IMSDK-OC
  4. //
  5. // Created by haochongfeng on 2018/1/23.
  6. // Copyright © 2018年 HCF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface QMTextModel : NSObject
  10. @property (nonatomic, copy)NSString *content;
  11. @property (nonatomic, copy)NSString *type;
  12. + (CGFloat)calcRobotHeight: (NSString *)htmlString;
  13. + (CGFloat)calcTextHeight: (NSString *)text;
  14. @end