Skip to content

Instantly share code, notes, and snippets.

@younthu
Created October 7, 2014 02:50
Show Gist options
  • Save younthu/9fd1efa011a2f239287c to your computer and use it in GitHub Desktop.
Save younthu/9fd1efa011a2f239287c to your computer and use it in GitHub Desktop.
Text color for attributtedString
NSMutableAttributedString *attrString = [[NSMutableAttributedString alloc] initWithString:text];
[attrString addAttribute:NSForegroundColorAttributeName
value:[UIColor redColor]
range:NSMakeRange(0, @"yyyy年MM月dd日".length)];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment