1234567891011121314151617181920212223 |
- //
- // KDPBaseLabel.m
- // KuDianProject
- //
- // Created by admin on 2019/7/12.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import "KDPBaseLabel.h"
- @implementation KDPBaseLabel
- - (void)drawTextInRect:(CGRect)rect{
- return [super drawTextInRect:UIEdgeInsetsInsetRect(rect, self.insets)];
- }
- - (void)setInsets:(UIEdgeInsets)insets{
- _insets = insets;
- [self setNeedsDisplay];
- }
- @end
|