Tagged Questions

7
votes
1answer
924 views

Tips on NSApp’s ModalForWindow, NSAlert’s ModalForWindow, and ModalSession

It took me quite a bit of experimentation to clear up some confusion over Objective-C’s “ModalForWindow” language and, subsequently, how to use a modal session. Maybe the following tips will save ...
2
votes
2answers
338 views

Cocoa How to display Informative Message

I need to display informative message box in Cocoa Application, which control should i use, i read the document of NSAlert, but it seems, it will create the modal message box, where i need something, ...
2
votes
2answers
825 views

Calling an NSAlert from didEndSelector of another NSAlert

I need to bring up an NSAlert based on the response from another NSAlert. However, when I try to call it from the didEndSelector of the first one, all kinds of nasty things happen (like my document ...
1
vote
1answer
409 views

Make a NSAlert the topmost window?

I've created the main window in my application to have these settings: [self setLevel:kCGDesktopWindowLevel + 1]; [self setCollectionBehavior: (NSWindowCollectionBehaviorCanJoinAllSpaces | ...
1
vote
1answer
234 views

Focus NSAlert accessory item

I have an NSAlert item that uses an NSTextField as an accessory item to provide an prompt-like dialog box. The only problem that I have is that when the alert is ran the text field is not focused. I ...
0
votes
1answer
79 views

NSAlert Over NSSavePanel

i am new in objective c , i want create alert over save panel to get confirm from user to overwrite exist file or not , like text editor when you save a file in a directory that have same file name ...
0
votes
2answers
59 views

NSAlert box is not showing up

I'm working on my first ever cocoa/Objective-C application, so please bear with me if I'm doing something obviously incorrect. I have the application set up to copy down whatever is in an NSTextField ...
0
votes
2answers
112 views

Creating a fully customized NSAlert

Is it possible to create a fully customized alert? I'm doing it with custom sheets now, but I'd like to have the feature that the sheet is blocking (like -[NSAlert runModal]). I just want to change ...
0
votes
5answers
174 views

Block until NSAlert (shown as a modal sheet) is dismissed

I'm currently learning (by doing) objective-c by implementing a feature I felt is missing in the Titanium Appcelerator Desktop SDK: A way to do modal dialog with custom button texts and optionally to ...
0
votes
0answers
80 views

How can I use NSAlert with no icon?

I want to use this method - (void)beginSheetModalForWindow:(NSWindow *)window modalDelegate:(id)delegate didEndSelector:(SEL)didEndSelector contextInfo:(void *)contextInfo; I found that NSAlert ...
0
votes
2answers
125 views

NSComboBox into NSAlert

First of all I'm kind of new in Objc. (so try to explain me like. . . for dummies XD) Well my question is: Is there any way to show a NSComboBox inside a NSAlert? that's it! I've check the ...
0
votes
1answer
214 views

Open alert box (NASlert) with a delegate and block all other windows?

Is there a way to open a NSAlert window, set a delegate for didEnd callback and while the alert is shown, all other windows should be "disabled" (can the window itself but not push any button or ...
0
votes
1answer
159 views

NSAlertPanel not working when Application is quitting

Im trying to allow the user to decide whether to quit the application or not and Ive been trying to implement it using this: - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication ...
0
votes
1answer
355 views

Adding Disclosure button and NSTextView to NSAlert

I want to display an NSAlert with basically an Accessory view. The Accessory view needs to have: 1) NSTexView for displaying mandatory contents 2) Disclosure button with NSTextView The Disclosure ...
0
votes
1answer
312 views

NSAlert - can you have a custom icon?

Is there a way to insert a custom icon in a NSAlert? I know you can have different prefabbealert styles but is it possible to cu
0
votes
1answer
351 views

Can't get NSAlert to continually bounce dock icon

I seem to have the exact opposite problem than this question on stopping dock bounce. I can't get my app to continually bounce the dock icon! I too hate continually bouncing dock icons, but in this ...