I have a url connection that works fine fine
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:delegate];
But when I create a modal window, the request does not receive a response:
[NSApp runModalForWindow:window]
If I comment on this line by creating a βstandardβ window, everything will work.
I tried to implement all the methods from NSURLConnectionDelegate, and not one of them.
I suspect this is something like "run loops", but I have little experience in this area. Does anyone have any experience with this?
thanks
source share