KKTextLable.m 302 B

12345678910111213141516171819
  1. //
  2. // KKTextLable.m
  3. // WWImageEdit
  4. //
  5. // Created by 邬维 on 2017/2/5.
  6. // Copyright © 2017年 kook. All rights reserved.
  7. //
  8. #import "KKTextLable.h"
  9. @implementation KKTextLable
  10. - (void)drawTextInRect:(CGRect)rect {
  11. [super drawTextInRect:UIEdgeInsetsInsetRect(rect, _textInsets)];
  12. }
  13. @end