Created
January 7, 2015 18:26
-
-
Save loganwright/9356c2f8df80d5c1c530 to your computer and use it in GitHub Desktop.
MarginLabel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <UIKit/UIKit.h> | |
@interface LGMarginLabel : UILabel | |
@property (nonatomic) UIEdgeInsets marginInsets; | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "VPMarginLabel.h" | |
@implementation LGMarginLabel | |
- (void)drawTextInRect:(CGRect)rect { | |
return [super drawTextInRect:UIEdgeInsetsInsetRect(rect, self.marginInsets)]; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment