4

如何禁用最后一个文档的自动重新打开?


当我执行我的应用程序时,它会调用方法readFromData

但是,问题是在我的版本 1 和我的版本 2 之间,我更改了应用程序保存的数据的结构。在 v1 中,根对象是一个数组。在 v2 中,根对象是一个具有两个键的字典,一个用于字符串,一个用于数组。

当应用程序加载时,它似乎从数据中加载了一个数组,然后尝试从该数组中获取字典键的对象。

我该怎么办 !!??

PS:我试图创建一个 NSApplicationDelegate

        -(BOOL)applicationShouldOpenUntitledFile:(NSApplication*)app
        {
            return YES; 
        }


        - (BOOL)applicationOpenUntitledFile:(NSApplication *)sender
        {
            return YES ;
        }

但是我的应用程序永远不会调用这些方法。


编辑 :

这是调用堆栈:

0   CoreFoundation                      0x00007fff8bc06f56 __exceptionPreprocess + 198
1   libobjc.A.dylib                     0x00007fff81f37d5e objc_exception_throw + 43
2   CoreFoundation                      0x00007fff8bc931be -[NSObject doesNotRecognizeSelector:] + 190
3   CoreFoundation                      0x00007fff8bbf3e23 ___forwarding___ + 371
4   CoreFoundation                      0x00007fff8bbf3c38 _CF_forwarding_prep_0 + 232
5   dictionnaireDouchoutique            0x0000000100007f22 -[Document readFromData:ofType:error:] + 498
6   AppKit                              0x00007fff89af3558 -[NSDocument readFromURL:ofType:error:] + 665
7   AppKit                              0x00007fff8999198c -[NSDocument _initForURL:withContentsOfURL:ofType:error:] + 151
8   AppKit                              0x00007fff89991890 -[NSDocument initForURL:withContentsOfURL:ofType:error:] + 360
9   AppKit                              0x00007fff89991677 -[NSDocumentController makeDocumentForURL:withContentsOfURL:ofType:error:] + 199
10  AppKit                              0x00007fff8999150f __-[NSDocumentController reopenDocumentForURL:withContentsOfURL:display:completionHandler:]_block_invoke_5 + 150
11  AppKit                              0x00007fff89991467 __-[NSDocumentController reopenDocumentForURL:withContentsOfURL:display:completionHandler:]_block_invoke_4 + 697
12  AppKit                              0x00007fff899911a9 -[NSDocumentController _openDocumentWithContentsOfURL:usingProcedure:] + 530
13  AppKit                              0x00007fff89990d95 __-[NSDocumentController reopenDocumentForURL:withContentsOfURL:display:completionHandler:]_block_invoke_3 + 242
14  libdispatch.dylib                   0x00007fff86329a82 _dispatch_call_block_and_release + 18
15  libdispatch.dylib                   0x00007fff8632b8f2 _dispatch_main_queue_callback_4CF + 308
16  CoreFoundation                      0x00007fff8bb9be7c __CFRunLoopRun + 1724
17  CoreFoundation                      0x00007fff8bb9b486 CFRunLoopRunSpecific + 230
18  HIToolbox                           0x00007fff87d652bf RunCurrentEventLoopInMode + 277
19  HIToolbox                           0x00007fff87d6c56d ReceiveNextEventCommon + 355
20  HIToolbox                           0x00007fff87d6c3fa BlockUntilNextEventMatchingListInMode + 62
21  AppKit                              0x00007fff8973d779 _DPSNextEvent + 659
22  AppKit                              0x00007fff8973d07d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
23  AppKit                              0x00007fff897399b9 -[NSApplication run] + 470
24  AppKit                              0x00007fff899b5eac NSApplicationMain + 867
25  dictionnaireDouchoutique            0x00000001000075d2 main + 34
26  dictionnaireDouchoutique            0x0000000100001984 start + 52
4

3 回答 3

2

在您的NSDocument子类中, override+ (BOOL)autosavesDraft和 return NO,您在开发过程中将是安全的。但是,一旦您投入生产,您应该处理您拥有的不同文件格式而不会崩溃......

于 2013-04-02T15:36:01.557 回答
1

使用 NSPropertyListSerialization 反序列化数据,然后使用respondsToSelector:isKindOfClass:检查它交给你的根对象类型。如果它是一个数组,请处理它;如果是字典,请处理它;如果它是你不认识的任何东西,返回一个错误,表明该文件是垃圾

于 2013-04-02T07:46:38.523 回答
0

你没有列出你是如何实现readFromData:的,但如果你正在使用NSKeyedUnarchiver你可以containsValueForKey:用来验证data参数中的对象。

如果要使旧版本不兼容,可以检测旧版本并填充错误参数。

于 2013-04-02T05:28:47.640 回答