gpt4 book ai didi

objective-c - 打开 'New' 文档?

转载 作者:行者123 更新时间:2023-12-03 16:44:33 24 4
gpt4 key购买 nike

我在 myDocument.m 文件中实现了一些代码,这些代码只是尝试在启动时加载上次使用的文档。但是,从全新安装启动时(或在删除最后使用的文件后运行)不会出现"new"文档窗口。有谁知道要在我的代码中添加什么来执行此操作?这是:

- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender
{
NSURL *lastURL=[[NSDocumentController sharedDocumentController] openDocumentWithContentsOfURL:lastURL display:YES error:nil];
if (lastURL!=nil)
{
[docController openDocumentWithContentsOfURL:lastURL display:YES error:nil];
return NO;
}

return YES;
}

最佳答案

- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender
{
NSArray* urls = [[NSDocumentController sharedDocumentController] recentDocumentURLs];
if ([urls count] > 0){
NSURL *lastURL= [urls objectAtIndex: 0];

if ([[NSDocumentController sharedDocumentController] openDocumentWithContentsOfURL:lastURL display:YES error:nil]){
return NO;
}

}

return YES;
}

编辑

我改变了它并尝试了一下,现在应该可以工作了。

关于objective-c - 打开 'New' 文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4940643/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com