gpt4 book ai didi

xcode - NSOpenPanel runModal 崩溃?

转载 作者:行者123 更新时间:2023-12-03 16:17:08 25 4
gpt4 key购买 nike

我有一个基于此论坛上找到的代码的例程:

+ (FSRef)useOpenFileToGetFSRef:(NSString **)fileName requiredFileType: (NSString*) requiredFileType
{
FSRef fileFSRef;
NSArray* fileTypes = [[NSArray alloc] initWithObjects:requiredFileType, nil];

//http://stackoverflow.com/questions/11815784/objective-c-nsopenpanel-get-filename
NSOpenPanel* openDlg = [NSOpenPanel openPanel];
[openDlg setFloatingPanel:YES];
[openDlg setCanChooseDirectories:NO];
[openDlg setCanChooseFiles:YES];
[openDlg setAllowsMultipleSelection:YES];
[openDlg setAllowedFileTypes:fileTypes];

if ( [openDlg runModal] == NSOKButton ) //<== CRASHES ON CALL TO runModal
{
NSArray* filePaths = [openDlg URLs];
//only getting 1st file
NSURL *fileUrl = [filePaths objectAtIndex:0];

*fileName = [fileUrl path];
CFURLGetFSRef((CFURLRef)fileUrl, &fileFSRef);
}

return fileFSRef;
}

应用程序在调用 runModel 时反复崩溃:

NSOpenPanel runModal anomaly

什么可以解释这个?

提前非常感谢所有人提供的任何信息。

系统信息:OS X 10.8.4。使用 ARC 编译。

最佳答案

我实际上认为您在所有异常上都有一个断点。我刚刚遇到这个问题并正在寻找原因。我遇到了这篇文章,但后来发现了以下内容。

NSOpenPanel crashes when debugging with Xcode 4.5.1

当您重新创建项目时,断点被重置。

关于xcode - NSOpenPanel runModal 崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17477263/

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