Even better: put a RoundRectButton, set its type to Custom, adjust the text so that it looks like a link, and then associate the action with the button.
If the button text is the actual URL that you want to visit, bind all the link buttons to the same action handler:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:sender.currentTitle]];
for the included "http: //" or
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[@"http://" stringByAppendingString:sender.currentTitle]]];
otherwise, i.e. A clean URL, such as "www.foo.net"
You get the added bonus of immediate visual feedback when you click the link button.
source share