macOS编程弹出消息

时间:2013-08-08 01:59:22

标签: xcode macos popup

喜欢在iOS上使用UIAlertView。在macOS上创建弹出消息应该有类似的解决方案。试图搜索但找不到任何有用的东西。

1 个答案:

答案 0 :(得分:1)

您要找的班级是NSAlert。有关此课程的信息,请参见class reference here。以下是其用法示例:

NSAlert *alert = [[NSAlert alloc] init];

[alert setMessageText:@"Some awesome message text"];
[alert addButtonWithTitle:@"OK"];
[alert runModal];