喜欢在iOS上使用UIAlertView。在macOS上创建弹出消息应该有类似的解决方案。试图搜索但找不到任何有用的东西。
答案 0 :(得分:1)
您要找的班级是NSAlert
。有关此课程的信息,请参见class reference here。以下是其用法示例:
NSAlert *alert = [[NSAlert alloc] init];
[alert setMessageText:@"Some awesome message text"];
[alert addButtonWithTitle:@"OK"];
[alert runModal];