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)
}
これは私の現在のコードで問題なく動作しますが、OS X アプリケーションを iMac で実行すると、テキストが非常に小さく見えます。プログラムでポイントサイズを増やしたいと思っていましたが、Swiftでは何も見つかりません。どんな助けでも大歓迎です!