UIAlertview message not Showing properly

流过昼夜 提交于 2020-01-17 03:18:06

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!