Tagged Questions

NSKeyedArchiver is a sub class of NSCoder. Provides a way to encode and persist objects in files. Belongs to the Foundation framework for Cocoa and Cocoa Touch.

learn more… | top users | synonyms

6
votes
1answer
195 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 ...
4
votes
4answers
267 views

Data protection on mobile devices

I'm storing some healthcare data on a mobile phone and I'd like to know what the best system of encryption is, to keep the data secure. It's basically a bunch of model objects, that I'm serializing ...
3
votes
1answer
265 views

How to convert NSData to NSArray (or NSObject)

I did test this code, but it cause SIGABRT error. NSArray *array = [NSKeyedUnarchiver unarchiveObjectWithData:data] NSData is plist data with xml format. This code works fine. [urlData ...
3
votes
2answers
71 views

How to parse the contents of a foreign file created with NSKeyedArchiver

I need to be able to compare two versions of a plist file created with NSKeyedArchiver. In particular, it's the "elements" file created in Xcode for a .xcdatamodeld file. Since I have not created ...
3
votes
1answer
2k views

What format does NSKeyedArchiver save?

When I use NSKeyedArchiver is the data that is written a *.plist, I have seen some examples where people have the output file down as *.txt or even without an extension at all? -(void)saveCore { ...
2
votes
1answer
26 views

Initializing a static singleton object with NSCoder

I'm working on an iPhone app and facing some troubles with my shared singleton class. I'm using a shared singleton to store two variables int gameRuns and int totalScore 'gamRuns' just increments ...
2
votes
1answer
45 views

NSKeyedUnarchiver not behaving as expected

I have come across an odd behaviour in NSKeyedUnarchiver. I archive a data, for this example I just use a string: NSMutableData *myData = [ NSMutableData data ]; NSKeyedArchiver *archiver ...
2
votes
1answer
341 views

streaming images over bonjour between two iOS device

My goal is to stream images captured by AVCpatureInput from one iOS device to another via bonjour. Here is my current method: 1) Capture frame from video input - ...
2
votes
1answer
262 views

Limitations of NSMutableData for NSKeyedUnarchiver

I have read on another post (Archiving / Unarchiving results in initForReadingWithData incomprehensible archive) that you can't store more than 250kBytes on a NSMutableArray. Unfortunately, in order ...
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
1answer
283 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
689 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
2k views

NSKeyedUnarchiver - Bad access

I was trying to archive an object into a plist file and load it later to fill a tableView. It seems that the file gets archived correctly but I get a bad access when trying to get the value out of the ...
2
votes
1answer
571 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 ...
2
votes
4answers
4k views

Encode NSArray or NSDictionary using NSCoder

I was wondering whether or not it is possible to use the NSCoder method: - (void)encodeObject:(id)objv forKey:(NSString *)key to encode either an instance of NSArray or NSDictionary. If not how do ...
2
votes
2answers
563 views

UserDefaults/KeyedArchiver Frustrations

I'm working on a homework app that uses custom Assignment objects for each assignment. I am trying to store an NSMutableArray (casted to an NSArray via initWithArray:) in standardUserDefaults but I'm ...
2
votes
1answer
952 views

Archiver Securing SQLite Data without using Encryption on iPhone

I'm developing an iphone app that uses Core Data with a SQLite data store and lots of images in the resource bundle. I want a "simple" way to obfuscate the file structure of the SQLite database and ...
2
votes
3answers
986 views

Archiving and Unarchiving results in Bad Access

I'm having trouble setting up a model object to save the visual state of user generated CALayers in a simple graphics application for the iphone. I'm attempting to save the background color and frame ...
2
votes
2answers
1k views

Loading a Singleton's state from NSKeyedArchiver

I have a class that I've made into a singleton and am able to save it's state using an NSKeyedArchiver, but I can't wrap my head around pulling it's state back out. In the function that does the ...
1
vote
1answer
35 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
1answer
65 views

NSArchiver vs NSKeyedArchiver performance

Why is NSKeyedArchiver performance so poor? The size doubles vs using NSArchiver. I am encoding an NSMutableArray of objects with the following line BOOL result = [NSArchiver ...
1
vote
2answers
63 views

Save multiple custom UIImageViews

I was recently examining the project "Demo Photo Board" found here. This is a simple demonstration of adding UIImageViews to the screen that have UIGestureRecognizers added to them...allowing the ...
1
vote
1answer
38 views

NSKeyedArchiver and Apple uploads

What does NSKeyedArchiver do to the information I give it? Is it serialized?, encrypted?, both?, other? My knowledge both of what constitutes encryption and the actual process of encrypting ...
1
vote
2answers
154 views

MKPolyline -> NSKeyedArchiver -> NSData SIGABRT

In my app I am trying to store an array of MKPolylines into NSUserDefaults. NSData *data = [NSKeyedArchiver archivedDataWithRootObject:overlays]; [[NSUserDefaults standardUserDefaults] ...
1
vote
2answers
99 views

NSKeyedUnarchiver - how to prevent a crash

I guess this is very obvious, but I have a question about loading data. If have a file called library.dat which stores all kind of information about objects in the app. It's set up all nicely (in ...
1
vote
1answer
50 views

NSKeyedArchiver and description method : app crashes

i tried to test NSKeyedArchiver, but my code seems to be wrong. I then tried only with a NSLog, but the NSLog returns (null) if i alloc-init my var "model" in the init method (in the controller), and ...
1
vote
2answers
102 views

Encode/decode NSCoder data in C++

I'd like to send serialized objects between a C++ application (running on a linux machine) and an iPhone application. Is this possible? Is there a way to encode/decode data using the NSCoding ...
1
vote
4answers
138 views

Objective-C best choice for saving data

I'm currently looking for the best way to save data in my iPhone application; data that will persist between opening and closing of the application. I've looked into archiving using a NSKeyedArchiver ...
1
vote
5answers
182 views

Singleton does not persist from app delegate into another view controller

Following this link: How do I archive two objects using NSKeyedArchiever? I am able to archieve an array and a singleton object. I can archieve and correctly unarchieve it at ...
1
vote
1answer
168 views

Synchronized NSKeyedArchiver or NSUserDefaults

I have a singleton delayed-transaction manager class, which is responsible for enqueueing and dequeueing iphone-to-app-server transactions that cannot complete due to a variety of factors (network ...
1
vote
1answer
219 views

NSData from NSKeyedArchiver to NSString

I'm trying to convert NSData generated from NSKeyedArchiver to an NSString so that I can pass it around and eventually convert it back to NSData. I have to pass this as a string (I'm using three20 URL ...
1
vote
1answer
963 views

Invalid Summary on NSMutableArray

I would need some expert advice on how to solve this problem. I am doing some crude testing for a new app for the iPad. I create a NSMutableArray (ballPath) in the viewDidLoad of my view controller ...
1
vote
1answer
172 views

NSKeyedArchiver not saving all properties of an object

I am having an issue where I am saving, among other things, an array of "nodes" (header below) that posses a color and a tag property. When it saves as in - (void)saveDataToDiskWithPath:(NSURL*)path, ...
1
vote
2answers
48 views

Preferred file extension

I am saving with NSKeyedArchiver. What should the file extension of my file name be?
1
vote
0answers
148 views

I'm having problems un-archiving an NSMutableSet with circular references

I'm having problems unarchiving an NSMutableSet object in my iPhone (iOS 4.3) app. I have a subview of UIImageView that contains an ivar of type NSMutableSet. I have defined the NSMutableSet in the ...
1
vote
2answers
446 views

How do you save data with NSKeyedArchiver?

Hi, I am trying to save an object from a class I have created. It is called shot and Contains 5 variables I wish to save. Here is the .h file--- It cut off NSCoding and NSMutableCopying Protocals and ...
1
vote
3answers
919 views

Serialization vs. Archiving?

The iOS docs differentiate between "serializing" and "archiving." Is this a general distinction (i.e., holds in other languages) or is it specific to Objective-C? Also, what is the difference between ...
1
vote
3answers
2k views

Saving NSMutableArray to NSUserDefaults using NSKeyedArchiver

I'm having trouble retrieving a saved NSMutableArray containing a custom object. The app crashes and the console reports http://pastie.org/1226822. Here is my objects .h file ...
1
vote
1answer
666 views

NSArchiver vs. NSKeyedArchiver

How do you know if you need to use NSArchiver or NSKeyedArchiver? What's the difference?
1
vote
2answers
119 views

Location for archiving on iPhone

I'm looking to archive some nested NSDictionary objects to be able to use the data in them at next start. To do so I was going to use [NSKeyedArchiver archiveRootObject: toFile: ] but was not sure ...
1
vote
1answer
227 views

NSKeyedUnarchiver - delete decoded data?

I couldn't get any replies on my previous (related) question, so I'm wondering if slightly paraphrasing it will be of any help. I'm encoding a few complex objects with NSKeyedArchiver and saving it ...
1
vote
0answers
130 views

NSNumbers in archived array dissappear

Okay I've made an array of NSNumber objects that I've stored into an NSMutableArray. When the game loads it's unarchived and retained but all the NSNumber objects are gone. Here's my code: times = ...
1
vote
1answer
200 views

NSKeyedUnarchiver chokes when trying to unarchive more than one object

We've got a custom matrix class, and we're attempting to archive and unarchive an NSArray containing four of them. The first seems to get unarchived fine (we can see that initWithCoder is called ...
1
vote
1answer
315 views

monotouch NSKeyedArchiver

does anyone have any examples of using NSKeyedArchiver in monotouch? i just want to store a list of pocos w://
1
vote
2answers
566 views

iPhone NSKeyedArchiver - the data saved with this class persist after app update via AppStore?

I am a newbie in the iPhone dev and I want to know if I will save some data(NSSDictinary) with NSKeyedArchiver, tis data persist after an update process of my app via AppStore? Let's say that I want ...
1
vote
1answer
697 views

NSKeyedArchiver file - losing data

Using Iphone SDK 3.1.2. I am saving some info to a file using NSKeyedArchiver object. I have 4 keys. I read data from the file for all 4 keys on applicationDidFinshLaunching and write back to the file ...
1
vote
1answer
174 views

Will using an NSKeyedArchiver/NSCoder persist even after an application update?

I have NSKeyedArchiver and NSCoder data being persisted (as .txt files) and working great. When I deploy new builds to the iphone, the text files are still present - in other words, they are not being ...
1
vote
1answer
2k views

IPhone - NSKeyedUnarchiver memory leak

I am using NSKeyedUnarchiver unarchiveObjectWithFile: to read in application data. When running with Leaks in Instruments, I am told that the following produces a leak: { NSArray *paths = ...
0
votes
2answers
22 views

IOS: NSUserDefault for an array of UIImage

I want to store an array of UIImage and I do this: //in didFinishLaunchingWithOption NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; NSData *data = [defaults ...
0
votes
0answers
11 views

Batch Unit Testing Properties of an Object Created by NSKeyedUnarchiver : Tell Wether the Properties are Pointers or Primitive Values

I have a model object that I want to store to the disk with NSKeyedArchiver. As new properties are often added to the class representing the object, I want to write a unit test to ensure not to forget ...

1 2 3