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