This is the code I'm using to present a modal view controller. Everything works great when animated is YES but as soon as I change animated to NO it seems to ignore my re-sizing lines. Any ideas why turning animation off would cause that to break?
THLoginViewController *vc = [[THLoginViewController alloc] initWithNibName:@"LoginView" bundle:nil];
vc.modalPresentationStyle = UIModalPresentationFormSheet;
vc.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:vc animated:YES];
CGPoint center = vc.view.superview.center;
vc.view.superview.frame = CGRectMake(0, 0, 650, 486);
vc.view.superview.center = center;