On 2/8/14 8:43 PM, Trygve Inda wrote:
I am reading a document in the format of the old version of my app and converting it to a new format. The old version is not a document at all but is a fixed data file in /Application Support/MyApp/MyDocument *untitledDoc = [[NSDocumentController sharedDocumentController] makeDocumentForURL:nil withContentsOfURL:fileURL ofType:kApplicationDocumentType error:&error]; if (untitledDoc) { [untitledDoc makeWindowControllers]; [untitledDoc showWindows]; [untitledDoc setFileURL:nil]; [[NSDocumentController sharedDocumentController] addDocument:(NSDocument *)untitledDoc]; }
I have something similar (loading an old file into a document with blank file URL) but instead of do driving the whole documentation creation manually, I let AppKit do it the way it wants to do it.
In other words, have you tried calling -openDocument: on your NSDocumentController setting fileURL to nil when it is done?
Markus -- __________________________________________ Markus Spoettl _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
