Is it possible or not to come back to the current view after the user comes to the app again?( Once the app was destroyed )

I would like to develop the sequence of view. In each view must press the next button to go to the next view if the app was destroyed and comes again, It will display the current view that hasn't pressed the next button yet.
Answered by Claude31 in 667569022
If destroyed means closed, yes:
If you save the last visited view in userSettings, you can get it back when you reopen and go to this view automatically.

But if destroyed means removed from the iPhone and you have to download again, no. You loose everything. Unless you save a user context on a server, but that adds useless complexity.
Accepted Answer
If destroyed means closed, yes:
If you save the last visited view in userSettings, you can get it back when you reopen and go to this view automatically.

But if destroyed means removed from the iPhone and you have to download again, no. You loose everything. Unless you save a user context on a server, but that adds useless complexity.
Yes, it's mean closed
Thank you ^^

Is it possible or not to come back to the current view after the user comes to the app again?( Once the app was destroyed )
 
 
Q