Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NSAlertにカスタムアイコンを挿入する方法はありますか?私はあなたが異なるプレハブアラートスタイルを持つことができることを知っていますが、cuすることは可能ですか?
はい。使用できます
- (void)setIcon:(NSImage *)icon
ドキュメントを見てください。
迅速:
let alert = NSAlert() alert.messageText = "My message" alert.addButton(withTitle: "OK") alert.alertStyle = .informational alert.icon = img alert.runModal()