On the first run of my application I show an alert view to the user to choose iCloud or local document storage. Showing the alert view causes the following error:
Applications are expected to have a root view controller at the end of application launch wait_fences: failed to receive reply: 10004003
Why is this happening? How do you show an alert view on start-up without getting this error?
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Check the user preferences for document storage options
if (![UserPreferencesHelper userDocumentStoragePreferencesHaveBeenCreated])
{
// User preferences have not been set, prompt the user to choose either iCloud or Local data storage
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Use iCloud?"
message:@"Would you like to store data in iCloud?"
delegate:self
cancelButtonTitle:nil
otherButtonTitles:@"No", @"Yes", nil];
[alert show];
}
}
** UPDATE **
I should mention that I'm using iOS 5 with storyboards. The root view controller is set in the storyboard.