Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Commit

Permalink
Fix user data UI not being presented as a form sheet on the iPad
Browse files Browse the repository at this point in the history
  • Loading branch information
DerAndereAndi committed Nov 17, 2012
1 parent 06441b1 commit 0285c61
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Classes/BITFeedbackComposeViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,9 @@ - (void)setUserDataAction {
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 {
Expand Down

0 comments on commit 0285c61

Please sign in to comment.