IMModel.m 713 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // IMModel.m
  3. // BuguLive
  4. //
  5. // Created by yy on 16/8/18.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "IMModel.h"
  9. @implementation IMModel
  10. - (CGFloat)getHeight:(NSString *)content
  11. {
  12. self.contentHeight = [self boundingRectWithSize:self.content];
  13. CGFloat height = self.contentHeight + 43.3;
  14. return height;
  15. }
  16. //计算文本高度
  17. - (CGFloat)boundingRectWithSize:(NSString *)str
  18. {
  19. //文本框的长kScreenW-99
  20. CGRect rect = [str boundingRectWithSize:CGSizeMake(kScreenW - 99, MAXFLOAT) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{ NSFontAttributeName: kAppMiddleTextFont } context:nil];
  21. CGFloat height = rect.size.height;
  22. return height;
  23. }
  24. @end