UIAlertView 不出现的问题

最近使用UIAlertView时候发现了一个问题,UIAlertView不能够正常的显示。UIAlertView部分的代码是没有问题。后来发现是,由于使用了

UIWindow* window = [UIApplicationsharedApplication].keyWindow;

window.windowLevel = UIWindowLevelAlert+1;

导致window的层级比UIWindowLevelAlert的层级高,所以,被遮住。

从新设置了window的层级 就好了。

你可能感兴趣的:(UIAlertView 不出现的问题)