Skip to content

Instantly share code, notes, and snippets.

@keicoder
Created December 20, 2013 03:29
Show Gist options
  • Save keicoder/8050017 to your computer and use it in GitHub Desktop.
Save keicoder/8050017 to your computer and use it in GitHub Desktop.
objective-c : iOS7 텍스트 레터프레스 효과 적용
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