Use this i liked it so much since creates link with blue color to particular text only not on whole label text: FRHyperLabel
To do:
Download from above link and copy FRHyperLabel.h
, FRHyperLabel.m
to your project.
Drag drop UILabel
in your Storyboard
and define custom class name to FRHyperLabel
in identify inspector as shown in image.
@property (weak, nonatomic) IBOutlet FRHyperLabel *label;
`NSString *string = @"By uploading I agree to the Terms of Use"; NSDictionary *attributes = @{NSFontAttributeName: [UIFont preferredFontForTextStyle:UIFontTextStyleHeadline]};
_label.attributedText = [[NSAttributedString alloc]initWithString:string attributes:attributes];
[_label setFont:[_label.font fontWithSize:13.0]];
[_label setLinkForSubstring:@"Terms of Use" withLinkHandler:^(FRHyperLabel *label, NSString *substring){
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.google.com"]];
}];`