Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
56 views

Cocoa (Mac): splitting / combining a core data based application from / into multiple save files

I'm working in OS X Lion on a Core Data based Cocoa application where I need to be able to save different parts, lets say partA and partB, of the data model into separate files. I need to be able to ...
1
vote
1answer
70 views

SQLite-based NSPersistentDocument in a sandboxed environment

I'm attempting to bring a Mac app up-to-date with the new sandboxing rules in Lion. However, despite requesting com.apple.security.files.user-selected.read-write permissions, I'm getting errors. When ...
1
vote
2answers
173 views

NSPersistentDocument “Unsupported store type” Exception

I've run into this problem twice now: Xcode 4.1, Lion, and a NSPersistentDocument Core Data project. My program was running fine until I added two "binary data" attributes to one of the entities in ...
1
vote
1answer
165 views

How do you correctly update a model in Xcode4 without corrupting it?

I never had any problems with Xcode3, but with Xcode4 I'm getting Apple's code failing approx 1 time in 3 when I update a core data model, with the dreaded "Persistent store migration failed, missing ...
0
votes
0answers
4 views

CoreData, autosaving, forcing save, not seeming to save all data

I have an NSPersistentDocument subclass using NSManagedObject subclasses for my data. When a new document is opened, I do some initializing of data structures (trivial amount of populating fields). ...
0
votes
0answers
5 views

CoreData not setting type as XML

I'm having a hard time debugging a problem with my data (CoreData, NSPersistentDocument). I have a subclass of NSPersistentDocument. I am using NSManagedObject subclasses / standard Core Data ...
0
votes
0answers
39 views

Where are 'Untitled' auto-saved documents actually saved?

Using Xcode 4.2 I have created an NSPersistentDocument based CoreData application. In the -init Method of my document class, I populate the MOC with some objects. When I quit the application, and ...
0
votes
0answers
98 views

Force save into app sandbox with NSDocument/NSPersistentDocument

When a new document is made and edited the user gets a stock save panel to choose where to save it. The trouble is that even with read/write access to the file system in the entitlements file as my ...
0
votes
1answer
1k views

Mac / iPhone app - syncing core data to iCloud & devices (using core data)

I am working an iPhone app and a Mac app that use Core Data. I would like to have these 2 apps synchronise their databases via iCloud storage. I have made adjustments to the implementations of the ...
0
votes
0answers
28 views

how to handle or store similar datasets in core data to work on each one insulated by user selection?

my current ios project has a simple datamodel consisting of node and edge entities related to each other. the user can choose a dataset from a library listed in a tableview or can make his own by ...
0
votes
0answers
75 views

autosavesInPlace causes existing documents to appear Edited even when they're first opened

In my document-based Core Data application, in my NSManagedDocument subclass I override autosavesInPlace: + (BOOL)autosavesInPlace { return YES; } When I open an existing document, it appears ...
0
votes
1answer
129 views

NSManagedObjectContextObjectsDidChangeNotification not always called instantly

I have an Mac Application using a NSPersistentDocument. I want to get notified when Objects are deleted to save this information using Core Data. So I'm listening for ...
0
votes
3answers
93 views

Is -makeWindowControllers the best place to initialize an NSPersistentDocument?

When loading an existing document using NSPersistentDocument, as part of initialization I'd like to prepare some content: NSFetchRequest *req = [NSFetchRequest ...
0
votes
1answer
41 views

Undo manager not up to date with NSPersistentDocument

I have some calculated values in the core data database that I need to update just before saving. Basically I'm numbering some entities in order to ease up the navigation between them. Currently I'm ...
0
votes
2answers
55 views

NSPersistentDocument – how to access the window?

I want to set some properties of the window of my NSPersistentDocument object. How do I get access to it? Is there a better way than like this? [[[[self windowControllers] objectAtIndex:0] ...
0
votes
1answer
52 views

Handling command line arguments from NSPersistentDocument

I've an application based on NSPersistentDocument, it has three different views based on diffrent conditions and data and every works fine. Now the customer also wants to run the application from ...
0
votes
1answer
129 views

Creating a new NSManagedObject within an NSPersistentDocument refuses to save even though undo shows as possible

I have a CoreData / NSPersistentDoc app. It works fine. I added a new entity to the MOM, and updated the version. Now, when I create new instances of that Entity inside the MOC, the "Save" menu item ...
0
votes
0answers
137 views

OutlineView with treeController and core data problem changing item values

I've got an NSOutlineView bound to an NSTreeController in entity mode in an persistent document with core data. I can add and delete new items. Unfortunately, if I change the caption of an ...
0
votes
1answer
247 views

Binding NSArrayController to moc in NSPersistentDocument subclass in Xcode4 in XIB view

I have my subclass of NSPersistentDocument who's superclass has [self managedObjectContext] Trying to set the bindings of my NSArrayController in the xib. When I set the Parameter's Moc, the bind to ...
0
votes
2answers
152 views

NSPersistentDocument crash when creating persistent store

Recently I added a new entity into my Core Data model, so I created a new version for the model and a mapping model for it. However, now my NSPersistentDocument crashes with no obvious reason: ...