我似乎无法增加 NSAlert 的字体大小,甚至无法增加整个框的大小。
else if array[arraycount].containsString("Error: error.") {
let myPopup: NSAlert = NSAlert()
myPopup.alertStyle = NSAlertStyle.WarningAlertStyle
myPopup.addButtonWithTitle("I've Called!")
myPopup.informativeText = "Sorry, we weren't able to that. Please Call Support 1(800)234-4567 ext: 12345"
myPopup.runModal()
let app = NSRunningApplication.currentApplication()
app.activateWithOptions(.ActivateIgnoringOtherApps)
}
这是我当前运行良好的代码,但我将在 iMac 上运行我的 OS X 应用程序,并且文本看起来非常小。我想以编程方式增加点大小,但我在 Swift 中找不到任何相关信息。任何帮助,将不胜感激!