我在 XCode 中收到警告:
'presentModalViewController:animated:' is deprecated: first deprecated in iOS 6.0
在这行代码上:
[self presentModalViewController:initialSettingsVC animated:YES];
我尝试按照文档中的建议将其替换为:
[self presentModalViewController:initialSettingsVC animated:YES completion:nil];
我现在在 XCode 中遇到错误:
'ViewController' 没有可见的@interface 声明选择器'presentModalViewController:animated:completion:'
有任何想法吗?