《省钱达人》与《猎豆优选》UI相同版。域名tbk

MLLabel+Override.h 813B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // MLLabel+Override.h
  3. // MLLabel
  4. //
  5. // Created by molon on 15/6/6.
  6. // Copyright (c) 2015年 molon. All rights reserved.
  7. //
  8. #import "MLLabel.h"
  9. @class MLLabelLayoutManager;
  10. @interface MLLabel (Override)
  11. @property (nonatomic, strong) NSTextStorage *textStorage;
  12. @property (nonatomic, strong) MLLabelLayoutManager *layoutManager;
  13. @property (nonatomic, strong) NSTextContainer *textContainer;
  14. @property (nonatomic, strong) NSAttributedString *lastAttributedText;
  15. @property (nonatomic, assign) MLLastTextType lastTextType;
  16. //初始化
  17. - (void)commonInit;
  18. //复写这个可以最终文本改变
  19. - (NSMutableAttributedString*)attributedTextForTextStorageFromLabelProperties;
  20. //获取绘制起点
  21. - (CGPoint)textOffsetWithTextSize:(CGSize)textSize;
  22. //可以完全重绘当前label
  23. - (void)reSetText;
  24. @end