Fix user data UI not being presented as a form sheet on the iPad

This commit is contained in:
Andreas Linde 2012-11-17 13:37:14 +01:00
parent 06441b1260
commit 0285c61485

View File

@ -228,8 +228,9 @@
userController.delegate = self;
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:userController];
navController.modalPresentationStyle = UIModalPresentationFormSheet;
[self.navigationController presentModalViewController:navController animated:YES];
[self presentViewController:navController animated:YES completion:nil];
}
- (void)dismissAction:(id)sender {