gpt4 book ai didi

swift - 以编程方式增加 NSAlert 的字体大小

转载 作者:行者123 更新时间:2023-11-28 16:19:25 24 4
gpt4 key购买 nike

我似乎无法增加我的 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 中找不到任何相关信息。任何帮助将不胜感激!

最佳答案

不要设置informativeText,那真的很小。

相反,设置messageText。这更大,更大胆。

更好的是,两者都设置,这样更重要的信息就大而粗,不太重要的信息就小。

myPopup.messageText = "Sorry, we weren't able to that."
myPopup.informativeText = "Please Call Support 1(800)234-4567 ext: 12345"

关于swift - 以编程方式增加 NSAlert 的字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38661157/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com