iphone - UITabBarController with none selected controller -
In the 3.0 version of the iPod application (and perhaps even in previous versions) when an iPod application is launched after a sync The tab is not selected with the UITabBarController ...
Is there any way to complete the same behavior? Or is this just the default page, which is displayed by the iPod app at startup?
This will work when your tab bar has already been loaded:
Self.tabBarController.selectedViewController = nil;
In appDefinishing Launching, you have to use something like this:
[Tabbar controller display: @selector (setViewController :) withObject: after zero: 1] ;
Comments
Post a Comment