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

MLLabel.h 875B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // MLLabel.h
  3. // MLLabel
  4. //
  5. // Created by molon on 15/5/18.
  6. // Copyright (c) 2015年 molon. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSUInteger, MLLastTextType) {
  10. MLLastTextTypeNormal,
  11. MLLastTextTypeAttributed,
  12. };
  13. // UILabel的baselineAdjustment属性功能没模拟,其他的属性都模拟了
  14. @interface MLLabel : UILabel
  15. @property (nonatomic, assign) CGFloat lineHeightMultiple; //行高的multiple
  16. @property (nonatomic, assign) CGFloat lineSpacing; //行间距
  17. @property (nonatomic, assign) UIEdgeInsets textInsets;
  18. @property (nonatomic, copy) void(^doBeforeDrawingTextBlock)(CGRect rect,CGPoint beginOffset,CGSize drawSize);
  19. - (CGSize)preferredSizeWithMaxWidth:(CGFloat)maxWidth;
  20. //方便码代码
  21. - (void)setDoBeforeDrawingTextBlock:(void (^)(CGRect rect,CGPoint beginOffset,CGSize drawSize))doBeforeDrawingTextBlock;
  22. @end