I am interested to know on how i can resize the view when using UIModalPresentationFormSheet of modalpresentationstyle, it looks like it has a fixed size so i was wondering if anyone out there did managed to manipulated with the popup view from the sizing perspective.

so there is either UIModalPresentationFormSheet with a fixed view size or full views and i am after something in between :)

Thanks in advance!

link|improve this question

40% accept rate
possible duplicate of How to resize a UIPresentationFormSheet? – JosephH Mar 2 at 18:04
feedback

4 Answers

up vote 21 down vote accepted
MyModalViewController *targetController = [[[MyModalViewController alloc] init] autorelease]; 

targetController.modalPresentationStyle = UIModalPresentationFormSheet;

targetController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:targetController animated:YES];

targetController.view.superview.frame = CGRectMake(0, 0, 200, 200);//it's important to do this after 

targetController.view.superview.center = self.view.center;
link|improve this answer
8  
This is not a good solution because it adds some kind of a blur to navigationItem title. This one is better: targetController.view.superview.bounds = CGRectMake(0, 0, 200, 200); It is still center, no need to do ...superview.center. – Borut Tomazin Jul 15 '11 at 8:27
feedback

I just posted a solution to this here: How to resize a UIPresentationFormSheet?

link|improve this answer
thanks! MyModalViewController *targetController = [[[MyModalViewController alloc] init] autorelease]; targetController.modalPresentationStyle = UIModalPresentationFormSheet; targetController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal; //transition shouldn't matter [self presentModalViewController:targetController animated:YES]; targetController.view.superview.frame = CGRectMake(0, 0, 200, 200);//it's important to do this after presentModalViewController targetController.view.superview.center = self.view.center; – Fatos Nov 26 '10 at 10:49
feedback

After several experiments, I've decided to keep Apple-specified size. I have added a margins to my UI and put a smaller View inside with autoresizing mask set to "Stick to the top". So it stays in the center top, and will if Apple even makes the size different (they will not, because they depend on that size in their own apps).

This approach looks suprisingly OK. :)

link|improve this answer
feedback

Just to extent Fatos solution (great one) If your are creating the view controller using a .xib file after the alloc initWithNibName you could store the view frame:

CGRect myFrame = targetController.view.frame;
...
targetController.view.superview.bounds = myFrame;

And then use it for superview.bounds, so the view's size in the .xib will be used and you could change the size more visually.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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