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.

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;
share|improve this question
i used the same code even with NO it seems to work fine – Kasaname Dec 12 '12 at 4:10

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.