Hi,
I have a AlertView with 4 textfields in it.
The "OK" button behing one of the 4 textfield, so I use "\n" in the message to make the AlertView bigger so that the "OK" comes under the 4 textfields.
You can see I use 5 "\n" , that's not enough, but when I write a sixth one, and run the app, I can see the alertview with a white scrollview instead of 4 textfields with the "OK" button lower than before...
Do you know why?
UIAlertView *myAlertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Edit", @"Edit") message:@"\n\n\n\n\n" delegate:self cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
