Say for example if I have two buttons one for apples and one for orange, and I select apples and takes me to the apples screen. How can I make it for now on every time I run the app it will go to the apples screen?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
in viewDidLoad
and on Button Methods on Apple button
on Orange button
|
|||
|
|
|
You can store information like this using NSUserDefaults. You'd store a boolean
You can read it by accessing the default userDefaults:
|
|||
|
|
|
On your app delegate you must have some method that instantiates the very first controller and displays it in a window. You can just create an "apples controller" and push it there |
|||
|
|
|
You can use NSUserdefaults here,
and insted of the name string of your firstview controller in appdelegate file use the above NSUserDefaults. |
|||
|
|
