答案 0 :(得分:1)
我正在使用这段代码来显示UIAlertView 它对我来说很好,
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@""
message:@""
delegate:self
cancelButtonTitle:@""
otherButtonTitles:@"", ..., nil];
[alert show];
答案 1 :(得分:0)
可能有些东西已经在主线程上运行,因此警报视图不可见。请试试这个
{{1}}