我在课堂上使用 Uialertview。
这是我的代码
UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:nil message:@"message" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[alertView show];
但问题是当我按下确定按钮时,警报隐藏了,但黑色背景仍然存在。
有人对此有答案吗?
我在课堂上使用 Uialertview。
这是我的代码
UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:nil message:@"message" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[alertView show];
但问题是当我按下确定按钮时,警报隐藏了,但黑色背景仍然存在。
有人对此有答案吗?
尝试这个。
UIAlertView * alertView = [[[UIAlertView alloc] initWithTitle:@"" message:@"message" delegate:nil cancelButtonTitle:@"Okay" otherButtonTitles:nil, nil] autorelease];
[alertView show];
在您的代码中[[UIAlertView alloc]initWithTitle:nil @"message"
应该 initWithTitle:@"message"
像这样,
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Your Title" message:@"Your Message Body !!" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
尝试,
UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"" message:@"message" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alertView show];