2

I'm building a source editor extension and when it gets triggered I want to show an alert.

I tried this:

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

But I get this error:

Exception: NSWindow drag regions should only be invalidated on the Main Thread! NSWindow drag regions should only be invalidated on the Main Thread!

Thank you in advance

rmaddy
  • 314,917
  • 42
  • 532
  • 579
mike vorisis
  • 2,786
  • 6
  • 40
  • 74

0 Answers0