Joined December 2013
·

Kevin Muldoon

Bridgeport, CT
·
·

@paulomcnally, nice job! You found an excellent solution for iOS7. Complete code here for those who are interested.

UIViewController *viewController = [[UIViewController alloc] init];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
navigationController.modalPresentationStyle = UIModalPresentationFormSheet;
navigationController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentViewController:navigationController animated:YES completion:nil];
navigationController.view.superview.frame = CGRectMake(0, 0, 800, 544);
navigationController.view.superview.center = self.view.center;

Achievements
49 Karma
0 Total ProTip Views