Skip to content

Instantly share code, notes, and snippets.

@bgayman
Created June 15, 2016 12:40
Show Gist options
  • Save bgayman/6c9d1b705b50782e5d19d25f688f6fd9 to your computer and use it in GitHub Desktop.
Save bgayman/6c9d1b705b50782e5d19d25f688f6fd9 to your computer and use it in GitHub Desktop.
#import <UIKit/UIKit.h>
IB_DESIGNABLE
@interface KerningLabel : UILabel
@property (nonatomic) IBInspectable CGFloat kerning;
@end
#import "KerningLabel.h"
@implementation KerningLabel
- (void)setKerning:(CGFloat)kerning
{
NSMutableAttributedString *attribString = [[NSMutableAttributedString alloc]initWithAttributedString:self.attributedText];
[attribString addAttribute:NSKernAttributeName value:@(kerning) range:NSMakeRange(0, self.attributedText.length)];
self.attributedText = attribString;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment