Skip to content

Instantly share code, notes, and snippets.

@loganwright
Created January 7, 2015 18:26
Show Gist options
  • Save loganwright/9356c2f8df80d5c1c530 to your computer and use it in GitHub Desktop.
Save loganwright/9356c2f8df80d5c1c530 to your computer and use it in GitHub Desktop.
MarginLabel
#import <UIKit/UIKit.h>
@interface LGMarginLabel : UILabel
@property (nonatomic) UIEdgeInsets marginInsets;
@end
#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