解决方法
您可以在可可中使用NSAlert。这与ios中的UIAlertView相同。
你可以通过这个弹出提示
你可以通过这个弹出提示
NSAlert *alert = [NSAlert alertWithMessageText:@"Alert" defaultButton:@"Ok" alternateButton:@"Cancel" otherButton:nil informativeTextWithFormat:@"Alert pop up displayed"]; [alert runModal];
编辑:
NSAlert *alert = [[NSAlert alloc] init]; [alert setMessageText:@"Message text."]; [alert setinformativeText:@"informative text."]; [alert addButtonWithTitle:@"Cancel"]; [alert addButtonWithTitle:@"Ok"]; [alert runModal];