I'm trying to create a form sheet modal on iPad, which should be a 540x620 modal view.

I've created a view controller with a NIB file whose view is a 540x620 sized UIView (with stuff on it).

I set the modal presentation style to UIModalPresentationFormSheet, and call presentModalViewController:animated: on the current view controller.

My view slides in from the bottom, but instead of being a form sheet, it takes up the whole screen (my view elements are all anchored in the top left of the screen).

Even stranger, when I dismiss it, all the UI that was "underneath" it, is all re-layed out to be in the center, in approximately a form sheet sized area in the center of the screen. Bizarro!

Anyone have any suggestions as to what could cause this behavior?

Thanks.

link|improve this question

feedback

1 Answer

up vote 11 down vote accepted

Figured this out. I was setting the modal presentation style on the parent view controller-- it needs to be set on the newly-created child controller. One needs to think of it as a property of the child, not something the parent controls.

I would delete this question, but figure I'll leave it as a signpost for the future wayward.

link|improve this answer
Thanks for not deleting this, it helped me out. – Wayfarer Aug 3 '11 at 18:01
me too, it helped me. – Scar Feb 20 at 22:39
feedback

Your Answer

 
or
required, but never shown

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