Tagged Questions

0
votes
1answer
209 views

NSApp beginSheet creates a sheet very briefly then disappears

[NSApp beginSheet] is used like so: [NSApp beginSheet:[testSheetController window] modalForWindow:[NSApp mainWindow] modalDelegate:nil didEndSelector:nil contextInfo:nil]; Upon ...
0
votes
2answers
270 views

Add close button to UIModalPresentationPageSheet corner

Is there a way to add a button at the corner of an UIModalPresentationPageSheet? I mean, I want to put that Apple-like (x) button at the corner of a Page Sheet, but adding it to the parent view makes ...
0
votes
2answers
718 views

Action sheet not opaque

For some reason the top half of the my action sheet is not opaque. I have created the view and action sheet using the code below: //allocate the view self.view = [[UIView alloc] ...
0
votes
1answer
810 views

App modal NSPanel / sheet / dialog + NSThread == window hangs?

I'm in the midst of debugging an extremely unusual problem, and I was wondering if anybody might have any insight into what might be going wrong: In a controller class from a NIB, I take an NSPanel ...