Possible Duplicate:
underline text in UIlabel
I want to underline the UILabel
text as hyperlink
UILabel *myLabel = [[UILabel alloc] initWithFrame:CGRectMake(20.0, 220.0, 160.0, 30.0)];
myLabel.text = @"click here";
How can i make the above string to be underlined ?
Thanks for any help