There are several solutions to your problem.
If the links are the only object in the cell, you can simply call the didSelectRowAtIndexPath:(NSIndexPath *)indexPath UITableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath to collect the link from your table data array and then use
[[UIApplication sharedApplication] openURL:myURL];
to open the URL.
Alternatively, you can create your own subclass of UITableCell , which contains a custom button (instead of a rounded right button) that has no image or background (text only), so that it looks like a link (you can even color the text blue, and emphasize this ...). When the user clicks the button, the handler function then calls the same openURL function as above.
The above method works best if you have multiple elements in each cell (so you need to create a custom cell ...
source share