Skip to content

Instantly share code, notes, and snippets.

@mathisonian
Created May 14, 2013 03:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mathisonian/5573402 to your computer and use it in GitHub Desktop.
Save mathisonian/5573402 to your computer and use it in GitHub Desktop.
ligatures and symbol fonts on ios
NSMutableAttributedString *string = [[NSMutableAttributedString alloc] initWithString:@"camera"];
[string setAttributes:@{(NSString *)kCTLigatureAttributeName:[NSNumber numberWithInt:2]} range:NSMakeRange(0, string.length)];
self.myUILabel.attributedText = string;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment