如何在Xcode源代码编辑器扩展中显示警报

时间:2019-02-18 11:24:19

标签: swift macos xcodekit

我正在构建源代码编辑器扩展,当它被触发时,我想显示警报。

我尝试过:

let alert = NSAlert()
alert.messageText = "Hello world"
alert.informativeText = "Information text"
alert.addButton(withTitle: "OK")
alert.addButton(withTitle: "Cancel")
alert.runModal()

但是我得到这个错误:

  

例外:NSWindow拖动区域仅应在   主线程! NSWindow拖动区域仅应在   主线程!

提前谢谢

0 个答案:

没有答案