iPhone - Switch Tab from UIWebView
Posted
by user269737
on Stack Overflow
See other posts from Stack Overflow
or by user269737
Published on 2010-02-17T04:46:13Z
Indexed on
2010/03/29
9:43 UTC
Read the original article
Hit count: 259
I have a webview and I want to manually switch to another tab during a specific event. The event is arbitray, but I can't figure out hwo to switch teh tab. On my other views, I have the following code:
self.tabBarController.selectedViewController = [self.tabBarController.viewControllers objectAtIndex:2];
However, this does not work in my custom UIWebView class. Is there a simple solution to this?
Thanks
© Stack Overflow or respective owner