我正在构建一个iPhone应用程序,当点击特定按钮时会显示警告消息。 自动旋转处于 ON 状态。当我旋转手机时,整个应用视图以及提醒消息都会在iOS7
中旋转但是,在iOS8
视图中旋转除了提醒消息了
答案 0 :(得分:2)
UIAlertView
无法在iOS8
中正常使用iOS8
使用新的UIAlertController
给定的链接适用于我的案例。
答案 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];
}