Fix missing navController in last doc commit

This commit is contained in:
Andreas Linde 2012-10-20 21:53:43 +02:00
parent dff3539534
commit b85138a409

View File

@ -190,7 +190,9 @@ typedef enum {
[NSURL URLWithString:@"http://hockeayyp.net/"]]];
feedbackCompose.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:feedbackCompose animated:YES completion:nil];
UINavigationController *navController = [[[UINavigationController alloc] initWithRootViewController:feedbackCompose] autorelease];
[self presentViewController:navController animated:YES completion:nil];
@return `BITFeedbackComposeViewController` The compose feedback view controller,
e.g. to push it onto a navigation stack.