How to show alert pop-up in in Cocoa on macOS?
You can use NSAlert in cocoa. This is same as UIAlertView in ios. you can pop-up alert by this NSAlert *alert = [NSAlert alertWithMessageText:@”Alert” defaultButton:@”Ok” alternateButton:@”Cancel” otherButton:nil informativeTextWithFormat:@”Alert pop up displayed”]; [alert runModal]; EDIT: This is the latest used method as above method is deprecated now. NSAlert *alert = [[NSAlert alloc] init]; [alert setMessageText:@”Message text.”]; … Read more