Here\'s the problem: I have some code that goes like this
otherWinController = [[NotificationWindowController alloc] init]; for (int i = 0; i < 10; i++)
You can probably achieve the desired effect right inside your loop, if you explicitly give the run loop some time to run:
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow: 0.1]];