12345678910111213141516171819 |
- //
- // KKTextLable.m
- // WWImageEdit
- //
- // Created by 邬维 on 2017/2/5.
- // Copyright © 2017年 kook. All rights reserved.
- //
- #import "KKTextLable.h"
- @implementation KKTextLable
- - (void)drawTextInRect:(CGRect)rect {
- [super drawTextInRect:UIEdgeInsetsInsetRect(rect, _textInsets)];
- }
- @end
|