UITabBarController with none selected controller - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T08:39:41Zhttp://stackoverflow.com/feeds/question/1050772http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1050772/uitabbarcontroller-with-none-selected-controller1UITabBarController with none selected controllerPanagiotis Korros2009-06-26T19:19:15Z2009-07-07T00:12:15Z
<p>In the 3.0 version of the iPod application (and maybe in previous versions too) when the iPod application is launched after a sync the UITabBarController appears with no tab selected...</p>
<p><a href="http://twitpic.com/8hlpm" rel="nofollow">iPhone iPod loading screen</a></p>
<p>Is there any way to accomplish the same behaviour? or is this just the Default.png displayed by the iPod app at startup?</p>
http://stackoverflow.com/questions/1050772/uitabbarcontroller-with-none-selected-controller/1050798#10507980Answer by Kendall Helmstetter Gelner for UITabBarController with none selected controllerKendall Helmstetter Gelner2009-06-26T19:24:40Z2009-06-26T19:24:40Z<p>I'm not sure it's the default.png, when I launch mine the loading screen appears to be all black - and you wouldn't expect a default.png to be able to have the tab bar elements when you are allowed to re-order them as you are in the iPod app.</p>
<p>Perhaps if you set the UITabBarController selectedVC to nil...</p>
http://stackoverflow.com/questions/1050772/uitabbarcontroller-with-none-selected-controller/1051348#10513480Answer by Simon for UITabBarController with none selected controllerSimon2009-06-26T21:25:45Z2009-06-26T21:25:45Z<p>That doesn't look/feel like it is done with Default.png. Looking at the <a href="http://developer.apple.com/IPhone/library/documentation/UIKit/Reference/UITabBarController%5FClass/Reference/Reference.html#//apple%5Fref/occ/instp/UITabBarController/selectedViewController" rel="nofollow">docs online (under selectedViewController)</a>, you can select a view controller that isn't shown in the tab bar but still in the viewControllers array, and may be this is how it's done in the iPod/music app. So essentially make a view controller for a tab that isn't selectable from the tab bar by the user, and select that view controller programatically.</p>
http://stackoverflow.com/questions/1050772/uitabbarcontroller-with-none-selected-controller/1089786#10897861Answer by eskim2rock for UITabBarController with none selected controllereskim2rock2009-07-07T00:12:15Z2009-07-07T00:12:15Z<p>did you get the solution of this?
I'm still finding, too.</p>
<p>Any idea?</p>