如何防止 NSAlert 被关闭
How to prevent NSAlert from dismiss
如何防止简单的 NSAlert 被关闭?
F.ex.,当应用程序启动时,我显示一个包含 NSTextField 的 NSAlert。
用户应输入密码。仅当密码正确时,才应允许用户使用该应用程序,否则(如果密码不正确),警报应保留在那里并再次询问密码。
到目前为止,这是我的代码(用于创建警报):
func applicationDidFinishLaunching(_ aNotification: Notification){
let alert = NSAlert()
alert.addButton(withTitle: "Send")
alert.delegate = self
alert.alertStyle = .informational
alert.messageText = "Password - Login"
alert.informativeText = "Please type in your password: "
let txt = NSTextField(frame: NSRect(x: 0, y: 0, width: 200, height: 24))
txt.stringValue = "Password:"
alert.accessoryView = txt
alert.beginSheetModal(for: NSApplication.shared().mainWindow!) { (response) in
if (response == NSAlertFirstButtonReturn) {
// the alert closes here, is there any way to prevent this?
} else {
print("No value.")
}
}
OS: OS X 塞拉利昂,
Swift3
您可以第二次显示提醒;如果您需要自定义超出此范围的行为,则需要避开 NSAlert 和 运行 您自己制作的 NSWindow 或 NSPanel。
如何防止简单的 NSAlert 被关闭?
F.ex.,当应用程序启动时,我显示一个包含 NSTextField 的 NSAlert。 用户应输入密码。仅当密码正确时,才应允许用户使用该应用程序,否则(如果密码不正确),警报应保留在那里并再次询问密码。
到目前为止,这是我的代码(用于创建警报):
func applicationDidFinishLaunching(_ aNotification: Notification){
let alert = NSAlert()
alert.addButton(withTitle: "Send")
alert.delegate = self
alert.alertStyle = .informational
alert.messageText = "Password - Login"
alert.informativeText = "Please type in your password: "
let txt = NSTextField(frame: NSRect(x: 0, y: 0, width: 200, height: 24))
txt.stringValue = "Password:"
alert.accessoryView = txt
alert.beginSheetModal(for: NSApplication.shared().mainWindow!) { (response) in
if (response == NSAlertFirstButtonReturn) {
// the alert closes here, is there any way to prevent this?
} else {
print("No value.")
}
}
OS: OS X 塞拉利昂, Swift3
您可以第二次显示提醒;如果您需要自定义超出此范围的行为,则需要避开 NSAlert 和 运行 您自己制作的 NSWindow 或 NSPanel。