0

我有一个显示 NSAlert 窗口的多线程 OSX 应用程序。大多数情况下,UI 看起来不错,但有时它会通过放错看起来非常难看的按钮来破坏 UI。

在此处输入图像描述

因为我无法阻止主线程并且不想将其显示为模态。我正在使用以下代码。

NSAlert* alert = [NSAlert alertWithMessageText:title defaultButton:defaultBtn alternateButton:alterBtn otherButton:otherBtn informativeTextWithFormat:msg];
[alert setAlertStyle:style];

BOOL isMainThread = (dispatch_get_current_queue() == dispatch_get_main_queue());

if(isMainThread)
    [alert layout];
else
{
    dispatch_sync(dispatch_get_main_queue(), ^{
        [alert layout];
    });
}

NSModalSession session = [NSApp beginModalSessionForWindow:alert.window];
__block NSUInteger response;

for (;;) {
    if(isMainThread)
    {
        response = [NSApp runModalSession:session];
    }
    else
    {
        dispatch_sync(dispatch_get_main_queue(), ^{
            response = [NSApp runModalSession:session];
        });
    }

    if(response != NSRunContinuesResponse)
        break;
}

知道为什么会这样吗?

4

1 回答 1

1

哇,那是您那里的一些严重混乱的代码。

  • 你是如何决定打电话-layout是一个好主意的必要条件?
  • AppKit 不是线程安全的;你不应该-beginModalSessionForWindow:从除主线程之外的任何线程调用
  • NSAlert并非旨在让您为其运行模式会话,或接管它的演示

相反,NSAlert直接在主线程上调用-runModal或者-beginSheetModalForWindow:modalDelegate:didEndSelector:contextInfo:

于 2012-06-20T17:58:03.460 回答