0

我在课堂上使用 Uialertview。

这是我的代码

UIAlertView *alertView   = [[UIAlertView alloc]initWithTitle:nil message:@"message" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[alertView show];

但问题是当我按下确定按钮时,警报隐藏了,但黑色背景仍然存在。

有人对此有答案吗?

4

3 回答 3

1

尝试这个。

 UIAlertView * alertView = [[[UIAlertView alloc] initWithTitle:@"" message:@"message" delegate:nil cancelButtonTitle:@"Okay" otherButtonTitles:nil, nil] autorelease];
 [alertView show];
于 2013-03-26T06:22:28.633 回答
0

在您的代码中[[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];
于 2013-03-26T06:19:56.267 回答
0

尝试,

UIAlertView *alertView   = [[UIAlertView alloc]initWithTitle:@"" message:@"message" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alertView show];
于 2013-03-26T06:26:47.593 回答