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 中插入自定义图标?我知道你可以有不同的 prefabbealert 风格,但有可能
是的。您可以使用
- (void)setIcon:(NSImage *)icon
查看文档。
迅速:
let alert = NSAlert() alert.messageText = "My message" alert.addButton(withTitle: "OK") alert.alertStyle = .informational alert.icon = img alert.runModal()