gpt4 book ai didi

ios - presentModalViewController :animated is deprecated

转载 作者:技术小花猫 更新时间:2023-10-29 10:44:45 28 4
gpt4 key购买 nike

我在 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

关于ios - presentModalViewController :animated is deprecated,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17047578/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com