Created
December 20, 2013 03:29
-
-
Save keicoder/8050017 to your computer and use it in GitHub Desktop.
objective-c : iOS7 텍스트 레터프레스 효과 적용
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
iOS7 텍스트 레터프레스 효과 적용 | |
UIFont* font = [UIFont preferredFontForTextStyle:UIFontTextStyleHeadline]; | |
UIColor* textColor = [UIColor colorWithHexString:@"#A3A3A3"]; //3B4E5A | |
NSDictionary *attrs = @{ NSForegroundColorAttributeName : textColor, | |
NSFontAttributeName : font, | |
NSTextEffectAttributeName : NSTextEffectLetterpressStyle}; | |
NSAttributedString* attrString = [[NSAttributedString alloc] initWithString:note.title attributes:attrs]; | |
cell.textLabel.attributedText = attrString; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment