NSOpenPanel 在选择文件时崩溃
我正在使用 NSOpenPanel 来允许用户从他们的 MAC 中选择一个文件。该面板可以正常打开并过滤出正确的文件,但是一旦我单击文件,我的应用程序就会崩溃。
这是我打开面板的代码:
if ([openDlg runModalForDirectory:begin file:filename types:filetypes] == NSOKButton)
{
NSArray* selected = [openDlg filenames];
for (int i = 0; i < (int)[selected count]; i++)
{
NSString* fileName = [selected objectAtIndex:i];
string fn = [fileName UTF8String];
results->Append(Value::NewString(fn));
}
}
该代码永远不会从 runmodalForDirectory 方法调用中返回。
因此,一旦我选择了一个文件,调试器控制台就会显示以下内容:
Program received signal: “EXC_BAD_ACCESS”.
warning: Unable to restore previously selected frame.
Data Formatters temporarily unavailable, will re-try after a 'continue'. (Not safe to call dlopen at this time.)
简而言之,我认为此时调用 dlOpen 不安全。
然后我得到这个:
并且调用堆栈如下所示:
递归调用发生前的调用堆栈:
调用堆栈位于名为 WebFullScreenController.mm 的 WebKit 框架文件中,递归调用此方法 setDisableActions:
@implementation CATransaction(SnowLeopardConvenienceFunctions)
+ (void)setDisableActions:(BOOL)flag
{
[self setValue:[NSNumber numberWithBool:flag] forKey:kCATransactionDisableActions];
}
知道为什么会发生这种情况吗?提前致谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案,我们可能可以删除这个问题,事实证明这是我正在使用的 webkit 版本,我必须根据 webkit.org 上发布的错误修复修改 webkit
https://bugs.webkit.org/show_bug.cgi?id=61224
I found the answer, we could probably delete this question, it turned out it was the version of webkit I was using, and I had to modify webkit per this bug fix posted on webkit.org
https://bugs.webkit.org/show_bug.cgi?id=61224