Kind of a noob - but learning, so I'll try to explain the best I can
iphone app with 5 tab buttons click on a tab button (ex. SPONSORS) it loads navigation controller
click on a image and it loads a web view
webViewController.myWebURL = myWebURL;
[self.navigationController pushViewController:webViewController animated:YES];
everything works the way it is supposed to except if you click on a different tab button (ex MORE) then back on the previous tab button (SPONSORS), it loads up in the webview instead of the first navigation view for that tab bar button
I'm not sure where to release the webview (or even if I can) so that when the tab bar button is clicked it always loads the first view
If you click on the tab bar button a secon time, it will load the proper (first) view for that button