On Aug 24, 2015, at 12:53 PM, Alex Kac <a...@webis.net> wrote: > > I’ve also tried this…and the code in the dispatch_async never gets called. > I’ve seen other code on github that does something similar so obviously it > *should* work. > > - (IBAction)enterRegCode:(id)sender { > > registrationWindowController = [[RegistrationWindow alloc] > initWithWindowNibName:@"RegistrationWindow"]; > > __weak PIIntroWindowController* weakSelf = self; > > [self.window beginSheet:registrationWindowController.window > completionHandler:^(NSModalResponse returnCode) { > registrationWindowController = nil; > > if (returnCode == 1) > { > quitMeansCloseWindow = YES; > dispatch_async(dispatch_get_main_queue(), ^{ > NSLog(@“Do I get called?”); > }); > } > > }]; > > }
Have you tried logging returnCode above the "if"? The obvious reason that your log statement would not run is that returnCode is not 1. Regards, Ken _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com