Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
203 views

Can I get all keys of a NSKeyedUnarchiver?

I want do something with these step: Encode a kind of object A with NSKeyedArchiver M and I can get a NSData X. Init another kind of object B with NSKeyedUnarchiver N from NSData X. The names of A ...
6
votes
2answers
3k views

Objective C - How do I use initWithCoder method?

I have the following method for my class which suppose to load the nib file and instantiate the object. - (id)initWithCoder:(NSCoder*)aDecoder { if(self = [super initWithCoder:aDecoder]) { ...
4
votes
4answers
671 views

Crash on iOS device when dereferencing a pointer returned by NSCoder's decodeBytesForKey

I've found an unusual crasher with NSCoder when using the Apple LLVM Compiler 3.0 and compiled with -O3. It only crashes on devices. I've tested an iPhone 4 running iOS 5, an iPad 2 running iOS 5 and ...
3
votes
1answer
143 views

Saving a UIView for next launch (not as an image)

I am building an app with several UIViews which are generated dynamically, based on user inputs. These UIViews may contain labels, images and text. They take some time to generate so I would like ...
2
votes
2answers
85 views

When subclassing NSCoder, would I need to subclass collection classes (i.e:NSArray,NSDictionary) aswell?

I'm exploring the idea of subclassing NSCoder to read/write a proprietary file format. I'm starting to believe this might also require me to subclass NSArray and NSDictionary to override ...
2
votes
1answer
289 views

NSKeyedArchiver encode only part of an array

I have a list of objects that can sometimes change, and I want to keep a persistent cache on the device whenever the app is closed or move to the background. Most of the objects in the list will not ...
2
votes
1answer
699 views

Sample (preferably simple) subclass of NSCoder?

I'm trying to create a subclass of NSCoder, but I really don't know where to start. Apple's documentation lists which methods are required, but not much else. Maybe my Google-fu is weak, but I can't ...
1
vote
1answer
25 views

Unarchiving UIImageView with subviews

I'm going a bit crazy trying to archive and unarchive a UIImageView which has number of subviews which are custom views derived from UIImageView. Here's what I've done: Add a category to the project ...
1
vote
2answers
49 views

What is the use of NSCoder in initWithCoder:? (Cocoa and Cocoa Touch)

Whats the role of NSCoder here? - (id)initWithCoder:(NSCoder *)coder { self = [super initWithCoder:coder]; if (self) { } return self; }
1
vote
1answer
37 views

What file extension should be applied to NSCoder binary file format?

When using NSCoder and NSKeyedArchiver, I understand the data is stored in binary format. Therefore, what is the most appropriate file extension for a storage file? Many tutorials use .plist, but I ...
1
vote
2answers
118 views

How do NSCoder and/or NSKeyedUnarchiver handle multiple decodings of the same object?

I was wondering how NSCoder would handle an object that was shared and encoded by multiple objects the next time it was decoded. Will it make two copies of the object, or will one object be decoded ...
1
vote
2answers
68 views

Objective-C struct property pointer cannot be made via self.prop?

I've just encountered a little surprise whilst writing NSCoder support into a class. I have a class A which contains an exposed 'color' property of an rgb struct type. I have another class B which ...
1
vote
1answer
53 views

Reading persisted data from Apple/Objective-C in C#/.NET

is there a C#/.NET library or otherwise existing code that can read persisted data from Apple's serialization API, namely NSKeyedArchiver, NSKeyedUnarchiver, NSCoder? Context: A friend of mine ...
1
vote
2answers
321 views

How to save a NSMutableArray (containing other arrays) to file

This has been asked before and people have given very good instructions on how to do this, e.g. here. However, I was wondering if I really need to work with NSCoder if I simply wanted to save one ...
1
vote
0answers
107 views

ColorWell for Colored “Category”

I have an NSTextField, an NSTableView with a column "category", an NSColorWell, and a custom array controller. The NSTextField and the column "category" from the NSTextField are bound to the array ...
1
vote
0answers
195 views

Trouble decoding with NSKeyedUnarchiver

I am writing an app targeted at iOS 4.0 on XCode 3.2.3 where I store some data when the app closes using NSCoder protocol. Saving seems to work fine, the problem is retrieving the data from the saved ...
1
vote
2answers
86 views

iphone / objective C / how to encode a double[] for archiving

I am using double[] instead of NSArray. Would anyone know how to encode it for archiving
0
votes
0answers
15 views

Collection was mutated while being enumerated- archiving data and writing to file with NSCoder

In my app I am periodically writing a set of dynamic data to file. The data object gets updated about every second. Occasionally I get a "Collection was mutated while being mutated" exception on one ...
0
votes
1answer
22 views

NSCoder - Encoding an Array, with multiple levels of nested arrays

I have a mainObjectArray (NSMutableArray) which is populated with instances of a custom class. Each instance is itself an array, and objects in each array are NSDates, NSStrings, BOOL, and more arrays ...
0
votes
0answers
33 views

NSCoding protocol issues

I have set up a class that handles storing objects (NSMutableArray) using [NSUserDefaults standardUserDefaults]. I think I'm doing something wrong, maybe I don't understand protocols especially ...
0
votes
0answers
14 views

How do I save all my game objects with NSCoder in one file?

I am writing a game where I want to save everything to a user's "profile.sav" file, however in the examples I've seen they usually save class objects in individual .sav files. Here's an example. My ...
0
votes
1answer
61 views

Easy way to do NSCoder enabled class

I have tons of objects which I want to save for offline use. Currently I use create NSCoder compliant classes for the objects and coded data to file to be available offline. So in the .h I introduce ...
0
votes
1answer
84 views

How to Initialize View that has initWithCoder: method

I have a view that is initialized with - (id)initWithCoder:(NSCoder *)aDecoder How do I initialize this view in a viewController? I think I need the viewController if I want the view to autoRotate ...
0
votes
2answers
326 views

NSUserDefaults, NSCoder, Custom Class - iPhone app question

I'm having an error and I guess I'm doing something wrong in the following process. Firstly, I have a class Contacts: @interface Contact : NSObject<NSCoding> { @private ABRecordRef ref; ...
0
votes
1answer
103 views

What is the correct way to unarchive something that was archived using encodeRootObject:?

I am attempting to use the Keyed Archiver classes for the first time and I'm failing the last assert in this simple test (OCUnit): - (void) testNSCoding { NSMutableDictionary *dict = ...
0
votes
0answers
107 views

check if ipod music plays problem

i want to check if ipod music is played, so i added the mediaplayer framework and imported it: #import <MediaPlayer/MediaPlayer.h> then i've got in an NSCoder: -(id)initWithCoder:(NSCoder ...
0
votes
1answer
190 views

how to use NSCoder for transfer images and strings together over bluetooth?

I want to use NSCoder and transfer NSString and UIImage with single NSData over bluetooth you can simply say, "I want to sent NSData over bluetooth which contains UIImage and NSString" Help me ...
0
votes
1answer
183 views

decoder with NSString crashed

I have a class for saveing score: #import "cocos2d.h" @interface ScoreData : NSObject<NSCoding> { NSString *playerName; NSDate *playDate; } -(NSString* )description; @property ...
0
votes
1answer
176 views

Which NSCoder does .pbxproj format use?

Inside the .xcodeproj bundle, main project data is actually stored in the .pbxproj file. It is quite obviously an archived dictionary, but I have not been able to find which coder did Apple use? Is it ...
0
votes
2answers
1k views

Save own Class with NSCoder

I'm trying to store some custom class/data to a file in my iPhone/iPad app. I have a Class RSHighscoreList @interface RSHighscoreList : NSObject { NSMutableArray *list; } which contains ...
0
votes
1answer
206 views

Loading Game State with NSCoder?

How can I load the items I saved (or tried to save) with NSCoder? I am using the cocos2d framework. Here's a method I made to save things. -(void)save: (NSCoder *) coder { [coder ...
0
votes
1answer
199 views

iOS: best way to cache downloaded rss messages

I'm implementing what essential amounts to an RSS reader for iPhone. I download a bunch of short messages and display them to the user in a list. Each message is encapsulated in a MyMessage object ...
0
votes
1answer
172 views

NSCoder and custom types

How do you use NSCoder to encode and decode custom types? For example, how would you use NSCoder with an instance of "STATE" where: typedef enum { ON, OFF } STATE;
0
votes
2answers
74 views

Does this write or read an array?

[[NSUserDefaults standardUserDefaults] setObject:myArray forKey:@"myArray"]; I'm trying to figure out how to save and load an array using NSUser Defaults. I already have the NSCoding delegate ...
0
votes
2answers
584 views

When does initWithCoder get called?

This will load an array - (id)initWithCoder:(NSCoder*) coder { self = [super initWithCoder: coder]; if (self) { myArray=[coder decodeObjectForKey:@"myArray"]; } return self; } ...
0
votes
1answer
347 views

When does encodeWithCoder get called?

This will save an array (I think). - (void)encodeWithCoder:(NSCoder *)encoder { [encoder encodeObject:myArray forKey:@"myArray"]; } Do I have to directly call this method when I want to save an ...
0
votes
1answer
364 views

Problems with the NSKeyedArchiver

i've still have got problems with the NSKeyedArchiver. I implemented everything I was told to do, but it still does not work. I'm kind of frustrated. So could anyone help me out? Here is the .h file: ...
0
votes
2answers
341 views

Is NSMutableArray writeToFile recursive?

Does NSMutableArray support recursive serialization? E.g. will a NSMutableArray of NSMutableArray's serialize the entirety of the heirarchy out when calling writeToFile? Example: NSMutableArray ...