问题
I'm having a UIAlertView
and declared as
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"NEW_ALBUM" message:@"ENTER_ALBUM_NAME" delegate:self cancelButtonTitle:@"CANCEL" otherButtonTitles:@"Ok",nil];
alert.tag = 999;
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
[alert show];
[alert release];
the resultant alert was shown as
来源:https://stackoverflow.com/questions/19288340/uialertview-message-not-showing-properly