IOS8中不会轮换警报消息

时间:2014-09-25 06:49:00

标签: ios objective-c ios8

我正在构建一个iPhone应用程序,当点击特定按钮时会显示警告消息。 自动旋转处于 ON 状态。当我旋转手机时,整个应用视图以及提醒消息都会在iOS7中旋转但是,在iOS8视图中旋转除了提醒消息了

2 个答案:

答案 0 :(得分:2)

UIAlertView无法在iOS8中正常使用iOS8使用新的UIAlertController给定的链接适用于我的案例。

Reference Link

答案 1 :(得分:0)

这种情况正在发生,因为iOS无法一次理解多个操作。你可以像延迟一样调用UIalertview。我对iOS8有同样的问题,这段代码对我来说很好。

[self performSelector:@selector(showAlert) withObject:nil afterDelay:0.5];

-(void)showAlert
{
    UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"Your alert Title." message:@"Your alert Message." delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
    [alert show];
}