iPhone SDK 3.0 - wait_fences: failed to receive reply: 10004003

iphone, objective-c

Solution

I had this error when I did:

[self.navigationController popViewControllerAnimated:YES];

in:

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;

The error was gone when I used the following instead:

- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex;

What probably happened was that the navigation "slide" effect was initiated while the alertview hiding animation was still going on. After I changed this the animation was also smoother.

Problem

I've been working on an iPhone application, and since I started building on SDK 3.0 I receive this error whenever the application attempts to communicate with my webserver. Everything seems to be running fine, but I can't find anything that explains the root cause of the message. Any help would be appreciated.

Original source

Related problems