Won't give you specific code, but here are the steps I would take.
1.) Store a boolean flag in the NSUserDefaults. This is a persistent storage location done by Apple, very easy to use.
2.) Check this flag in the app delegate in the applicationDidFinishLaunching method.
3.) If the flag is up (ie this is not your first load), change the ViewControllers in your TabBarController object.
Hope this helps.
|