Today I'm working with an interesting problem. Right now, I have a first view that contains a webview, and then a separate view that contains a table with a list of URLs in a mutable array.
My question is, How do I load a URL from the row selected in the table in the first view, into the webview that is in a separate viewController?
I assume I'm going to need this:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
}
What I've done so far is set up a property for the webViewController, and what I'm working on now is passing it to the webView from the bookmarks view, but the help would be appreciated.
Thanks for your time!
- Jake