Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CreatureSurvive/50015343266e32dd924e7a5c958ab37b to your computer and use it in GitHub Desktop.
Save CreatureSurvive/50015343266e32dd924e7a5c958ab37b to your computer and use it in GitHub Desktop.
HTML to NSAttributedString
NSString *html = @"<div style='font: 18pt Helvetica-Light; color: #3498DB;'>Blue Text<span style='color: #AAAAAA;'>GreyText</span></div>"];
NSData *htmlData = [html dataUsingEncoding:NSUTF8StringEncoding];
NSMutableAttributedString *htmlAttributedString = [[NSMutableAttributedString alloc] initWithData:htmlData options:@{NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType} documentAttributes:nil error:nil];
[label setAttributedText:htmlAttributedString];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment