Possible Duplicate:
UIAlertView not showing message text
I am trying to create a simple UIAlertView for an app in landscape mode but all I see is the title and buttons but no actual message.
It has something to do with the space available for the UIAlertView on the screen as if I remove a couple of the buttons then the message displays fine.
Is there a way to force the UIAlertView to resize itself to fit?
Relevant code is here
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Free Update",nil)
message:NSLocalizedString(@"There is a new version of this app available in the App Store. Download it now.",nil)
delegate:self
cancelButtonTitle:NSLocalizedString(@"Don't remind me",nil)
otherButtonTitles:NSLocalizedString(@"Download",nil), NSLocalizedString(@"Remind me later", nil), nil];
[alert show];
[alert release];
And this is the result:

In the end we had to drop one of the buttons from the alert view to make it work in landscape mode.