When do you use encodeWithCoder: and initWithCoder: on the iPhone? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T01:15:28Z http://stackoverflow.com/feeds/question/809588 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/809588/when-do-you-use-encodewithcoder-and-initwithcoder-on-the-iphone 1 When do you use encodeWithCoder: and initWithCoder: on the iPhone? Coocoo4Cocoa 2009-04-30T23:33:00Z 2009-05-01T00:58:45Z <p>As my question in the subject above states, what requirements do you typically have to meet in order to say "Ok, I need encodeWithCoder: and initWithCoder: instantiation for this"? Typically you can write object state to NSUserDefaults, so I'm curious when do you experts decide to use one vs the other?</p> http://stackoverflow.com/questions/809588/when-do-you-use-encodewithcoder-and-initwithcoder-on-the-iphone/809642#809642 3 Answer by rpetrich for When do you use encodeWithCoder: and initWithCoder: on the iPhone? rpetrich 2009-04-30T23:53:43Z 2009-04-30T23:53:43Z <p><code>NSCoder</code> is the standard Cocoa method of implementing serialization. See Apple's <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/Archiving/Archiving.html" rel="nofollow">Archives and Serializations Programming Guide for Cocoa</a> for details.</p> http://stackoverflow.com/questions/809588/when-do-you-use-encodewithcoder-and-initwithcoder-on-the-iphone/809699#809699 3 Answer by Jens Alfke for When do you use encodeWithCoder: and initWithCoder: on the iPhone? Jens Alfke 2009-05-01T00:19:33Z 2009-05-01T00:19:33Z <p>User defaults is, basically, a property list. Property lists are similar to JSON and can only store specific types of data -- NSString, NSNumber, NSData, NSDate, NSArray, NSDictionary. If you try to store anything else in a user default, you'll get an exception. Property lists also can't handle arbitrary object graphs, only trees.</p> <p>You could always take your custom state and convert it into a property-list compatible data structure, then store it in user defaults; but then you're basically implementing an object serialization mechanism, and you might as well use the more powerful one that's already provided by NSArchiver.</p> http://stackoverflow.com/questions/809588/when-do-you-use-encodewithcoder-and-initwithcoder-on-the-iphone/809785#809785 2 Answer by Ben Gottlieb for When do you use encodeWithCoder: and initWithCoder: on the iPhone? Ben Gottlieb 2009-05-01T00:51:09Z 2009-05-01T00:51:09Z <p>initWithCoder: is used by the OS when un-archiving XIB files; if you look closely, you'll see that initWithFrame: is not called for views you create in your XIB; they'll have initWithCoder: called instead.</p> http://stackoverflow.com/questions/809588/when-do-you-use-encodewithcoder-and-initwithcoder-on-the-iphone/809805#809805 0 Answer by Brent Royal-Gordon for When do you use encodeWithCoder: and initWithCoder: on the iPhone? Brent Royal-Gordon 2009-05-01T00:58:45Z 2009-05-01T00:58:45Z <p>I go with NSCoder whenever I have some sort of complicated data to store that I never have to edit by hand. For example, my app <a href="http://converterapp.com" rel="nofollow">Converter</a> stores currency exchange rates downloaded from the Internet in an NSCoder archive. However, that's the only thing it keeps in such an archive: unit definitions, which are only ever altered by hand, are kept in a series of plist files in the application bundle, and things like the most recently selected units and values are kept in NSUserDefaults.</p>