mirror of
https://github.com/leanote/leanote-ios.git
synced 2025-10-15 07:32:55 +00:00
12 lines
220 B
Objective-C
Executable File
12 lines
220 B
Objective-C
Executable File
#import "WPNUXHelpBadgeLabel.h"
|
|
|
|
@implementation WPNUXHelpBadgeLabel
|
|
|
|
- (void)drawTextInRect:(CGRect)rect
|
|
{
|
|
UIEdgeInsets insets = {0, 0, 1, 0};
|
|
[super drawTextInRect:UIEdgeInsetsInsetRect(rect, insets)];
|
|
}
|
|
|
|
@end
|