Created
December 13, 2011 19:41
-
-
Save typeoneerror/1473559 to your computer and use it in GitHub Desktop.
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
NSMutableAttributedString *attrStr = [NSMutableAttributedString attributedStringWithString:@"Text to kern"]; | |
[attrStr addAttribute:(NSString *)kCTKernAttributeName | |
value:[NSNumber numberWithInt:-1] | |
range:NSMakeRange(0, [attrStr length])]; | |
[self.introLabel setAttributedText:attrStr]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment