Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Preserving application state across restarts

I've been trying to preserve the state of my iPhone application by serializing my main UITabBarController using [NSKeyedArchiver archiveRootObject:toFile:], but I'm running into difficulties.

First I had a problem with UIImage, since it doesn't implement the NSCoding protocol, but I solved that by making an extension category for UIImage that stores and retrieves the raw image data.

The problem I'm stuck on now is that my view controllers aren't there when I restore from the archive. I have UINavigationControllers in each of my tabs, and when I restore, the UINavigationItems are still there (I can use the Back buttons and so on to change them) but the view controllers are just gone.

I see that UINavigationController's viewControllers property is marked (nonatomic, copy). Does this mean that when you archive a UINavigationController, it doesn't include its stack of view controllers? If so, how can I get around this? I first thought I would override the NSCoding methods for UINavigationController, but this screws up initialization from the NIB file.

I'm a little perturbed that I've been having this much difficulty preserving app state. I figured it was a common enough use case that it would be straightforward to implement. Am I missing something here?

like image 994
lawrence Avatar asked Nov 30 '08 22:11

lawrence


1 Answers

The attributes on a @property have little or nothing to do with archiving behavior (they only describe how getters and setters work).

Also, just because UI classes support NSCoding, doesn't mean that it can be used to reconstruct state. Most of the time, they support NSCoding so that they can be constructed and loaded from a NIB file using Interface Builder. If you think about all the bits of state that you can't set in Interface Builder -- any number of these features may not be supported by the class' implementation of NSCoding.

Normally, people do not use NSCoding to store application state because exactly what constitutes application state is specific to your application.

Saving application state normally involves storing values yourself that would allow you to recreate the state. i.e. store the index of a selected tab or a series of selected indices representing the path walked through a navigation controller.

like image 77
Matt Gallagher Avatar answered Sep 23 '22 18:09

Matt Gallagher