Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to open a modal view controller in the centre of my iPad Application.

This is what I am doing in my code

Settings_iPad *vController = [[Settings_iPad alloc]
                                            initWithNibName:@"Settings_iPad" bundle:nil];

    vController.modalPresentationStyle = UIModalPresentationFormSheet;

    // Create a Navigation controller
    UINavigationController *navController = [[UINavigationController alloc]
                                             initWithRootViewController:vController];

    // show the navigation controller modally
    [self presentModalViewController:navController animated:YES];

    // Clean up resources
    [navController release];
    [vController release];

This is what I am getting http://www.use.com/48bcd41a28a13b562140

How can I open this window nicely with smaller size in the centre of the window.

Thanks

share|improve this question

2 Answers

up vote 0 down vote accepted

Set the modalPresentationStyle on the navigation controller to be UIModalPresentationFormSheet and present it modally.

navigationController.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:navigationController animated:YES];
share|improve this answer

You can do something like this: After presenting the view controller modally, set its size to your desired size, and then center it.

....

navController.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:navController animated:YES];
//these two lines are if you want to make your view smaller than the standard modal view controller size
navController.view.superview.frame = CGRectMake(0, 0, 200, 200);
navController.view.superview.center = self.view.center;
share|improve this answer
quite not sure if this works... doesn't seem to? – towpse Mar 27 at 17:35
yep it does. i used it in one of my projects like this. – davsan Mar 28 at 11:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.