iOS 9中的UIAlertView问题

时间:2015-10-30 08:50:04

标签: ios ios9

升级到iOS9后,我的UIAlertviewUIAlertcontroller未显示提醒,只显示随附的透明黑色背景!

任何人都可以建议我做错了什么! iOS 9以下的版本一切正常。

enter image description here

2 个答案:

答案 0 :(得分:1)

我正在使用这段代码来显示UIAlertView 它对我来说很好,

    UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"" 
    message:@"" 
    delegate:self 
    cancelButtonTitle:@"" 
    otherButtonTitles:@"", ..., nil];

    [alert show];

答案 1 :(得分:0)

可能有些东西已经在主线程上运行,因此警报视图不可见。请试试这个

{{1}}