Presenting view controllers on detached view controllers is discouraged的解决方案

问题:Presenting view controllers on detached view controllers is discouraged 


原因:因为使用了两次及以上的present视图,也就是模态两次或及以上次数,就会警告以上的这个错误


解决方案:

 1. 避免使用两次以上的present视图

  2. 以下代码也可以

[[[[UIApplication sharedApplication].windows objectAtIndex:0] rootViewController] presentViewController:webContro animated:NO completion:nil];


你可能感兴趣的:(XCode,IOS)