I'm trying to make my app remember which tab was last being viewed before the app quit, so that the app opens up to the same tab when it is next launched. This is the functionality of the iPhone's phone function: how can I do this?
|
|
In the UITabBar's Delegate, overwrite
and store item's index in NSUserDefaults. Next time your app starts, read it from there, and set it back to being selected. Something like this: -first, you would set a delegate for your UITabBar, like this:
-in anObject, overwrite didSelectItem:
Note that you save a NSNumber, as int values cannot be serialized directly. When you start the app again, it will read and set the selectedIndex value from the defaults:
|
|||||||||
|
|
Store the selected tab index in the NSUserDefaults preferences each time the user selects a new tab. Then when the app starts back up, load that value from the preferences and manually select that tab. |
|||
|
|
|
I subclassed TabBarController and:
|
|||
|
|
|
Here's how I did it. Both Methods are in the appDelegate and tabBarController is an instance variable.
|
|||
|
|
