我在XCode中收到警告:
'presentModalViewController:animated:' is deprecated: first deprecated in iOS 6.0
在这行代码:
[self presentModalViewController:initialSettingsVC animated:YES];
我试图用documentation中的建议替换它:
[self presentModalViewController:initialSettingsVC animated:YES completion:nil];
我现在在XCode中收到错误:
No visible @interface for ‘ViewController’ declares the selector
‘presentModalViewController:animated:completion:’
有任何想法吗?
解决方法
使用以下……..
if ([self respondsToSelector:@selector(presentViewController:animated:completion:)]){ [self presentViewController:test animated:YES completion:nil]; } else { [self presentModalViewController:test animated:YES]; }
我找到了Here