views:

1051

answers:

2

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

A: 

Views can't be resized. There are only 5 types of modals the SDK allows.

Sheehan Alam
If you have an complaint about a specific piece of functionality, complaining here will do you no good. File an enhancement request at http://bugreport.apple.com/ and you might be able to get them to add it before the beta is finished.
Brad Larson
+1  A: 

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

David Dunham