Tagged Questions
The nscoding tag has no wiki summary.
42
votes
5answers
28k views
Why NSUserDefaults failed to save NSMutableDictionary in iPhone SDK?
I'd like to save an NSMutableDictionary object in NSUserDefaults. The key type in NSMutableDictionary is NSString, the value type is NSArray, which contains a list of object which implements NSCoding. ...
21
votes
3answers
869 views
NSCoding of NSMutableDictionaries containing custom objects
I was trying to serialize a SearchEntity object(custom object) containing an NSMutableDictionary containing a set of type CategoryEntity(custom object).
1 SearchEntity containing:
1 ...
11
votes
1answer
568 views
Encoding an Objective-c Block?
Is it possible to encode an Objective-C block with an NSKeyedArchiver?
I don't think a Block object is NSCoding-compliant, therefore [coder encodeObject:block forKey:@"block"] does not work?
Any ...
7
votes
1answer
2k views
iPhone - Why does the documentation say UIImageView is NSCoding compliant?
Ideally an NSCoding compliant class will work as expected using encodeWithCoder: and initWithCoder: (at least I thought so till recently) without the developer having to bother about what goes on ...
3
votes
3answers
138 views
How to convert NSValue to NSData and back?
A have a number of NSValue (obtained via KVC valueForKey) that I need to append to an NSData object in order to send it over the network using Game Center. Obviously I will also need to convert the ...
3
votes
1answer
49 views
What happens to an NSArray object when encoding?
I'm building an application that utilises NSCoding to save NSObject's to a documentPath.
I'm having no issues doing this, I'm just curious about something.
I have MACompany, which implements NSCoding ...
3
votes
1answer
43 views
NSKeyedArchiver returning unexpected class?
I have a custom class that extends NSString. I'm attempting to serialize it (for drag/drop) using an NSKeyedArchiver. The class overrides the ...Coder methods:
- (id)initWithCoder:(NSCoder *)aDecoder ...
3
votes
1answer
132 views
When decoding an object from NSCoder, what's the best way to abort?
I'm decoding a custom object from a cached serialization. I've versioned++ the object since it was encoded, and if the serialized version is an old version I want to just throw it away. I was under ...
3
votes
1answer
377 views
Pluggable custom-view Nibs (Nib-in-a-Nib): Memory leak – why?
Our current best-practice for custom views is:
Build the custom view in a Nib.
In the view controller, programmatically load the Nib, get the custom view from the array of loaded objects (we do this ...
3
votes
1answer
56 views
What's the fastest way to determine if a file adheres to a particular class's NSCoding implementation?
Given: An application that accesses a directory of files: some plain text, some binary files that adhere to a particular NSCoding implementation, and perhaps other binary files it simply doesn't ...
2
votes
2answers
67 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
52 views
How to unit test NSCoding?
I have an iOS application with data persisted using NSCoding and more precisely NSKeyedArchiver. This application is already available on the App Store.
I'm working on version 2 of the application ...
2
votes
3answers
158 views
Cannot figure out why my app crashes when I use NSKeyedArchivers / NSKeyedUnarchivers
I am developing my first iphone 'Diary' app, which uses custom 'Entry' objects that hold an NSString title, NSString text and NSDate creationDate. When I try to archive an NSMutableArray of Entry ...
2
votes
4answers
428 views
Is it possible to serialize custom objects to a plist file in Objective-C?
For the sake of simplicity, let's assume that we have the following simple class interface:
@interface Person : NSObject <NSCoding> {
NSString *firstname;
NSString *lastname;
}
@property ...
2
votes
1answer
371 views
Advantages and disadvantages of encoding objects with NSCoding or simply writing data to files
I'm curious what the advantages of encoding objects in objective c with NSCoding and writing them to disk may be over simply writing a persistence object to disk. Is there a performance increase in ...
2
votes
1answer
408 views
NSCoding protocol question
I want to add the archiving (NSCoding) protocol to my model class, and then i implement both methods encodeWithCoder:(NSCoder*)coder and initWithCoder:(NSCoder*)coder. MyModelClass has 2 instance ...
2
votes
1answer
690 views
NSCoding with as NSString inside a object
My issue is then i retrive my NSArray of Store objects, all my NSString properties are giving me BadAccess errors. The int and double works fine!
store.h
@interface Store : NSObject<NSCoding> ...
2
votes
1answer
573 views
How to persist and load an object which conforms to NSCoding protocol?
I have made an class which conforms to the NSCoding protocol and does all the encode and decode stuff.
For my app, I simply want to persist an object from that class to the device and the next time ...
1
vote
1answer
37 views
NSCoding NSKeyedUnarchiver unarchiveObjectWithFile: returning null
I am trying to save some values from my app using NSCoding. I'm able to save the value but not able to retrieve it.
Here's where I am declaring the protocol:
@interface ...
1
vote
2answers
44 views
Encoding/decoding doubles with NSCoding
How can I use -[NSCoder encodeBytes:length:] and -[NSCoder decodeBytesWithReturnedLength:] with a double?
I have an object conforming to NSCoding with two double properties, and am currently using ...
1
vote
1answer
51 views
Subclassed UILabel stored within serialized view not storing custom vars
So, I have a view that is being serialized and stored in a file. Within that view, is n subclassed UILabels, with the only difference being a live property. I have the initwithcoder and ...
1
vote
1answer
81 views
Where can I find a generic game state singleton for Objective C?
I'm wanting to use, and store a game state singleton inside NSCoder, but I am finding it quite difficult to find a generic state management that saves and loads its data using the ...
1
vote
1answer
101 views
What am I doing wrong? NSFileManager woes
I'm currently building quite a large iPhone application. Bigger than I expected anyway. But that is beside the point, the overall idea of the application is to grab JSON from a web service, sort it ...
1
vote
2answers
54 views
Objective-C – Using NSCoding and updating your app to the App Store
I'm using NSCoding to encode my objects and save them to disk as a "caching" feature not having to download data every time my app is started. Right now I'm saving this data in the Documents folder of ...
1
vote
1answer
62 views
NSCoding with Custom init
I have a class named "Defense" with custom init method as below:
// initialize the defense unit and add the sprite in the given layer
- (id) initWithType:(DefenseType)tType andInLayer:(CCLayer ...
1
vote
0answers
137 views
Unarchiving iOS4 data on iOS5 doesn't work
I've archived an NSDictionary on iOS 4 using an NSKeyedArchiver, but unarchiving on iOS 5 using
[NSKeyedUnarchiver unarchiveObjectWithData: data]
throws this exception
*** Terminating app due to ...
1
vote
2answers
106 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
1answer
39 views
Compatibility of nskeyedarchiver between OS X and iOS
If I share a class implementing the NSCoding protocol between a desktop cocoa application and an iOS application, will I also be able to share a datafile created by archiving an object between those ...
1
vote
0answers
140 views
How to encode NSNetService?
I have a class that has these two ivars:
@interface UserData : NSObject <NSCoding> {
NSString *name;
NSNetService *service;
}
I wanted to encode this into a NSData object eventually, ...
1
vote
1answer
168 views
NSCoding with custom sub Objects
I have one costum object which has a reference to another custom object.
How do I encode the custom object within the one custom object in my - (void)encodeWithCoder:(NSCoder *)encoder method?
Lets ...
1
vote
2answers
140 views
Question about deep copying example
In the Beginning iPhone 4 book, the author has this code to create a category for creating a deep copy of an NSDictionary that has an NSArray of names for each letter of the alphabet to show an ...
1
vote
4answers
596 views
iOS custom file format loading with NSData & NSCoding
I'm looking for some guidance from some iOS Cocoa programmers as to how one might implement a mechanism to load and parse a custom file format into the model objects that I'll be using in memory. I ...
1
vote
2answers
281 views
Serializing/Storing a UIView and its subviews
I'm a relatively new iOS developer, with most of my previous experience coming from .NET.
My application is a canvas like system in that there is a parent UIView that contains all the objects the user ...
1
vote
2answers
626 views
initWithCoder: getting called by nib & NSCoding!
Ok, I'm having a lot of problems right now trying to get initWithCoder: to work right. I have a nib file that gets loaded, and in my app delegate, I call unarchiveWithFile: for the view controller ...
1
vote
2answers
499 views
Cocoa Interface Builder object initialization
Base on the documentation and sample code that I have gone through, I got an impression that when a class defined in xcode is read into and configured in Interface Builder, an object based on the ...
1
vote
1answer
124 views
Why is only one attribute of my <NSCoding> object being properly written to a file?
So I'm trying to write a NSMutableArray of custom objects (a "Course" representing a college course for a Course Planner app) to a file when my application terminates and then read that array from the ...
1
vote
2answers
405 views
NSCoding leak problem with initWithCoder
I have a leak in the following code:
-(id)initWithCoder:(NSCoder *)aDecoder {
if (self = [super init]) {
self.Tag = [aDecoder decodeObjectForKey:KEY_TAG];
self.ParentTag = ...
1
vote
1answer
435 views
Can setValuesForKeysWithDictionary be used with a nested dictionary
So I have an NSDictionary where one of the keys is an array of dictionaries. The class I'm mapping to has matching key names and setters. Can setValuesForKeysWithDictionary fill the sub-dictionaries ...
1
vote
0answers
190 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
1answer
246 views
How do I create a custom class from a class that already exists? (Existing class does not support NSCoding)
What I'm trying to do is convert an EKEvent into NSData, and then convert it back into an EKEvent.
I looked around and noticed that in order to use NSKeyedArchiver, the class must conform to the ...
1
vote
2answers
1k views
CGPathRef encoding
Is it possible to encode CGPathRef variables? I mean is there an encodeObject:forKey like method for CGPathRef variables?
1
vote
1answer
481 views
override classes variable, or at least variable type in objective-c / cocoa
My dilemma is as follows:
I have a custom subclass of UIImage (I've added some serialization methods i.e. initWithCoder, encodeWithCoder), and I would like to apply my custom subclass as a variable ...
1
vote
2answers
747 views
Saving/loading a 2D C array with NSKeyedArchiver
Malloc like this
int **terrain;
terrain = malloc(sizeof(int*) * mapSize.x);
for (int i = 0; i < mapSize.x; i++) {
terrain[i] = malloc(mapSize.y * sizeof(int));
}
Use it.
Convert to NSdata ...
1
vote
2answers
1k views
UIWebView incl. content encoding/decoding
My aim: to continue a web session across an app interruption (eg. incoming SMS that is read).
Approach A:
I have tried to store the contents of a UIWebView in NSUserDefaults, like this:
NSData ...
0
votes
3answers
40 views
App works fine on 4S, but crashes on 3G, because of SIGABRT
When the user starts the app for the first time he gets a pop up and has to save an image. It works on the simulator and on the 4S. But when I start it with my 3G it gives me a SIGABRT error as soon ...
0
votes
2answers
30 views
Objective C: Any help to how I can make it save two files instead of one for NSCoding?
So apparently my code here..
-(void)loadDataFromDisk
{
[dict release];
NSMutableData* data = [NSMutableData dataWithContentsOfFile:[self pathForDataFile]];
NSKeyedUnarchiver* unarchiver = ...
0
votes
2answers
63 views
Objective C: I'm trying to save an NSDictionary that contains primitives and object, but error occurred once i tried adding the custom object
So I have this custom object i made called 'Box', it's throwing the error for that one.
Inside of my NSDictionary is...
box = [[Box alloc] initWithHeight:20 height:40];
wrap.dict = ...
0
votes
0answers
37 views
After decoding, a reference to a custom UIView's layer is no longer valid
I have a customUIView, and an animation that is applied to the customUIView'sCALayer.
My customUIViewis a class of typeMyView, and my animation is of typeMyAnimation. Let's say the corresponding ...
0
votes
1answer
75 views
Saving NSMutableArray with UIImages to NSUserDefaults
I tried to save NSMutableArray which contains five UIImages to NSUserDefaults and didn't work. i got warning
-[NSUserDefaults setObject:forKey:]: Attempt to insert non-property value '(
...
0
votes
1answer
55 views
NSKeyedUnarchiver is not invoking -initWithCoder: on device (but okay on simulator)
I am encoding my object and saving it to a file as follows:
[NSKeyedArchiver archiveRootObject:self.parent toFile:@"gameScene.plist"];
and decoding it as follow:
scene = [[NSKeyedUnarchiver ...