I get "wait_fences: failed to get response: 10004003" when I call UIAlertView. It is called when the application opens. It does not crash the application or does not seem to affect its functionality, but I want to completely clear the application. This is a tab bar application, and I entered the code in the viewDidLoad section of the view controller, which first loaded in the application:
- (void)viewDidLoad
{
[super viewDidLoad];
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Welcome!" message:@"Thanks for downloading our new app! \n \n Take a look around and if you have any questions, don't hesitate to contact us." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alert show];
[alert release];
}
I saw other answers on the site about this error, but they seem to be dealing with UITextFields, and I'm not sure how they apply to my situation. I apologize if I miss something simple, but I am studying the practical application and seem to be unable to understand this. Thank!