Hi,
I have an RSS parser, which downloads a link to each item from an RSS feed. How do I make it so that when a user selects a row in the UITable, it opens my web view (made following this tutorial http://dblog.com.au/iphone-development/iphone-sdk-tutorial-build-your-very-own-web-browser/) with the URL of the item (which can be gathered by news.link)
Thanks.
DidSelectRow code:
webView = [incidents objectAtIndex:indexPath.row];
NSURLRequest *request = [NSURLRequest requestWithURL: news.link];
[webView loadRequest:request];
[self.navigationController pushViewController:webView animated:YES];
[tableView deselectRowAtIndexPath:indexPath animated:YES]
[webView release];