Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to display a modal view controller as a UIPresentationFormSheet. The view appears, but I can't seem to resize it. My XIB has the proper height & width, but it seems to get overridden when I call it like this:

composeTweetController = [[ComposeTweet alloc] initWithNibName:@"ComposeTweet" bundle:nil];
composeTweetController.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:composeTweetController animated:TRUE];

Any thoughts? I am using the iPhone SDK 3.2 beta 4

share|improve this question
The beta is under NDA, so I doubt you'll get many answers here. I recommend using Apple's SDK 3.2 Beta forums at devforums.apple.com – Martin Gordon Mar 16 '10 at 20:43

7 Answers

up vote 72 down vote accepted

You are able to adjust the frame of a modal view after presenting it:

Tested in iOS 5.1 - 6.1, using XCode 4.62

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 = GPointMake(roundf(self.view.center.x), roundf(self.view.center.y));//self.view assumes the base view is doing the launching, if not you might need self.view.superview.center etc.

Update The preferred iOS 6.0 view controller presentation method also works correctly:

- (void)presentViewController:(UIViewController *)viewControllerToPresent animated:(BOOL)flag completion:(void (^)(void))completion
share|improve this answer
   
This work! Thank you! – kyu Dec 8 '10 at 8:32
YES! Thanks! The trick seems to be to resize it after presenting it. – Krumelur Dec 30 '10 at 9:54
4  
It works also for me on iPad, but... If I rotate the device, the view is not centered – Mauro Delrio Aug 25 '11 at 17:56
3  
@MauroDelrio To make it work correctly from landscape you need to flip the center coordinates. ex: CGPoint center = self.view.center; targetController.view.superview.center = {isPortrait} ? center : CGPointMake(center.y, center.x); – Nate Weiner Jan 6 '12 at 1:36
2  
Careful for this approach, it causes some distortion in the view controller's views as a result of the scaling. – Ralphleon Feb 7 '12 at 6:18
show 4 more comments

composeTweetController = [[ComposeTweet alloc] initWithNibName:@"ComposeTweet" bundle:nil];
composeTweetController.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:composeTweetController animated:TRUE];
//if you want to change its size but the view will remain centerd on the screen in both portrait and landscape then:
composeTweetViewController.view.superview.bounds = CGRectMake(0, 0, 320, 480);
//or if you want to change it's position also, then:
composeTweetViewController.view.superview.frame = CGRectMake(0, 0, 320, 480);

share|improve this answer
I think you can just set frame or bounds & center – nielsbot Mar 10 '12 at 1:34

Tested and works for iOS 6, using XCode 4.5

I stumbled upon my answer after reading much of the tips on here:

  1. In the viewWillAppear:(BOOL)animated method:

    [super viewWillAppear:animated];
    
     //resize modal view
     self.view.superview.bounds = CGRectMake(0, 0, 432, 680);
    
  2. In the viewDidAppear:(BOOL)animated method:

    CGPoint centerPoint = CGPointMake([[UIScreen mainScreen] bounds].size.width/2, [[UIScreen mainScreen] bounds].size.height/2);
    self.view.superview.center = centerPoint;
    

I tried to add the centering code in the same place as the resizing code, but that did not work. For some reason, it only works after the view has appeared on the screen.

I surmise that it has something to do with the way that UIModalPresentationFormSheet works, because when I was stepping through in the LLDB debugger, I noticed that there was a variable _formSheetSize that was still {540, 620}. Go figure.

share|improve this answer
1  
The problem with this solution is the sheet changing its center after transitionStyle is completed – Fede Cugliandolo Nov 27 '12 at 18:03
@FedeCugliandolo - You are correct. The above method only works if you use a cross fade transition style, or don't animate at all. I ended up presenting with no animation, then using my own animation. – Jon Dec 7 '12 at 13:26
Does not work for me :( The form sheet has still the same size – Petr Peller Jan 24 at 14:01

I got a full screen modal view from UIPresentationFormSheet with just this line:

modalViewController.view.superview.bounds = CGRectMake(0, 0, 1024, 748);
share|improve this answer

@bdrobert sadly your nice solution does not work anymore on iOS6 - the container keeps the original size even though the new viewcontroller is embedded with the custom size.

You probably need to use the containment API introduced in iOS5, but you need to add a dimmed background on your own, fetching all touch events for that area.

share|improve this answer
Have you confirmed that this works? – Austin Henley Sep 25 '12 at 2:38
@Austin: I have used the containment API recently, but not for this purpose. For me going back to the original size is acceptable. – Oliver Michalak Oct 22 '12 at 17:25
This is the best solution I see here. Modifying a view's superview's size, whether it be by changing the bounds or the frame, is just asking for trouble. It assumes implementation-specific knowledge of bits of the view hierarchy that you do not control. – jdc Mar 29 at 19:15

On change of orientation, this code work perfect....

settingViewController.modalPresentationStyle = UIModalPresentationFormSheet;

    [self presentViewController:settingViewController animated:YES completion:nil];

    settingViewController.view.superview.frame = CGRectMake(0, 0, 700, 700);

    UIInterfaceOrientation currentOrientation = [self getDeviceOrientation];

    if(currentOrientation == UIInterfaceOrientationPortrait || currentOrientation == UIInterfaceOrientationPortraitUpsideDown)
    {
            CGPoint centerPoint = CGPointMake([[UIScreen mainScreen] bounds].size.width/2, [[UIScreen mainScreen] bounds].size.height/2);
            settingViewController.view.superview.center = centerPoint;
    }
    else
    {
        CGPoint centerPoint = CGPointMake([[UIScreen mainScreen] bounds].size.height/2, [[UIScreen mainScreen] bounds].size.width/2);
        settingViewController.view.superview.center = centerPoint;
    }
share|improve this answer

The view size is fixed. You will have to implement things yourself if you want something different.

share|improve this answer
2  
This is incorrect, see my answer above. – bdrobert Dec 17 '10 at 20:35
It's not incorrect and it is not at odds with your answer. Modifying the view controller's view's superview's frame counts as "something different", in my book. – jdc Mar 29 at 19:11

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.