Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
  1. is there any way to resize a View Controller that has been presented modally using a storyboard segue?

  2. how do I present another View Controller from this modal view controller with a flip transition?

If I define it as Style=Modal, Presentation=Default, Transition=Flip Horizontal it just looks weird (background is white).

Thx!

share|improve this question
1  
Note, you almost always want a modalViewController to take the entire screen. This is because the viewController that is "under" the modalViewController is removed once the modalViewController has appeared. Thus, if you were trying to cover half of the screen with your modalViewController with the intention of having the other viewController showing "underneath", this will not work. It will show white. I accomplish this functionality by adding a view as a subview of the parent view. – bearMountain Jun 18 '12 at 20:54

2 Answers

Yes. In interface builder select the view controller and in the attribute inspector set Size to freeform (from inferred). Then select the view and set its measurements to whatever you require. An important point to note is uncheck Resize View From NIB in the view controller otherwise the view becomes full screen again.

Not sure about the second question if the background is the only problem can't you just set the colour?

Hope this helps.

share|improve this answer
1  
That doesn't work, at least in my case and I do exactly what you said. Any idea? Thanks. – Ricardo Apr 15 '12 at 1:10
4  
+1 for mentioning the Resize View From NIB checkbox, I never would have found that otherwise. – DonnaLea Jun 12 '12 at 12:58
you're the man!!!! Thank you so much! – Stefano Mondino Sep 6 '12 at 10:15
I m doing the same but its not working for me...:( – KmlHarariyA Jan 22 at 6:09
1  
God. Why can't I upvote more than once ? Thanks a lot Scott ! – GuillaumeA Mar 18 at 17:03

I'm trying to do the same, and in storyBoard my ModalView is smaller , but in simulator it covers all screen...

I think this cannot be done in iPhone... (I've made a simple test in iPad and the modal view worked).

I'll try a semi-transparent view for iPhone and won't use a Modal View.

Hope this helps.

share|improve this answer

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.