Files
leanote-ios/Leanote/controller/auth/WPNUXHelpBadgeLabel.m
2015-08-21 23:49:41 +08:00

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