Questions tagged [nsalert]

126 questions
0
votes
1 answer

Alert window on cancellation row of tableview

I have a NSTableView connected to an arraycontroller, I would like that when the user click on the cancel button of the line, an alert window will appear that asks for confirmation before deleting. How can I do?
Andrea
  • 427
  • 3
  • 16
0
votes
1 answer

Have NSRunAlertPanel show an alert on any space? - Objective-C/10.7+

I'm working on an app that is marked as LSUIElement and its main window is a NSPanel 'attached' to the status bar. Sometimes I need to display a normal alert panel (either by using NSRunAlertPanel or NSAlert). However, it's very important that the…
Alex
  • 5,009
  • 3
  • 39
  • 73
0
votes
1 answer

Which kind of helpAnchor is used for setHelpAnchor in NSAlert (Cocoa)?

I am trying to add help topics to alerts but really don't know how to set the help file . I checked NSAlert class reference in Apple developer site, but there was a tiny amount of information there. I used file paths as well as website urls, but of…
Aug
  • 595
  • 9
  • 22
0
votes
1 answer

NSAlertPanel problems

I am designing an application to connect remotely to another computer. I want to display an NSAlertPanel on connecting however it is 'blocking' the remote side from continuing with the session until OK is pressed with the usual NSAlertPanel…
Kevin
  • 1,469
  • 2
  • 19
  • 28
0
votes
1 answer

Open new window uppon NSAlert

I'm using a NSAlert to ask the user to enable Accessibility for assistive devices. Is it possible to have a button that does not close the NSAlert that I could use to just open the UniversalAccess prefpane ? If not, I suppose I've to create myself…
Matthieu Riegler
  • 31,918
  • 20
  • 95
  • 134
0
votes
2 answers

Why isn't my didEndSelector in my NSAlert being called?

I can't figure out why my didEndSelector isn't being called. Any ideas? - (void) showMonitorAlertIfNeeded { if (! self.monitorAlert && [self isHideMonitorAlert]) { self.monitorAlert = [MMAlertController monitorAlert]; …
aroooo
  • 4,726
  • 8
  • 47
  • 81
1 2 3
8
9