Skip to content

Instantly share code, notes, and snippets.

@timothy1ee
Created February 17, 2014 19:53
Show Gist options
  • Save timothy1ee/9057758 to your computer and use it in GitHub Desktop.
Save timothy1ee/9057758 to your computer and use it in GitHub Desktop.
TTTAttributedLabel example
TTTAttributedLabel *label = [[TTTAttributedLabel alloc] initWithFrame:CGRectMake(10, 10, 200, 20)];
label.linkAttributes =
@{ (NSString *)kCTForegroundColorAttributeName : [UIColor redColor],
(NSString *)kCTUnderlineStyleAttributeName : @(kCTUnderlineStyleNone) };
label.enabledTextCheckingTypes = NSTextCheckingAllTypes;
label.text = @"Link to http://google.com";
[self.view addSubview:label];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment