gpt4 book ai didi

ios - 方法 openURL :options:completionHandler compatibility in objective c

转载 作者:可可西里 更新时间:2023-11-01 04:10:38 24 4
gpt4 key购买 nike

我正在使用 openURL:options:completionHandler: 方法,事实证明在 iOS 10 中工作正常,但我也对我的应用程序与旧 iOS 9 兼容感兴趣,但 xcode 给了我一个

NSException:
-[UIApplication openURL:options:completionHandler:]:

无法识别的选择器发送到实例有什么方法可以让它在 iOS 9 中工作吗?感谢您的回复!

最佳答案

The new UIApplication method openURL:options:completionHandler:, which is executed asynchronously and calls the specified completion handler on the main queue (this method replaces openURL:)

这是在 Additional Framework Changes > UIKit 下:https://developer.apple.com/library/prerelease/content/releasenotes/General/WhatsNewIniOS/Articles/iOS10.html

你需要像这样使用它:-

if #available(iOS 10.0, *) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
} else {
UIApplication.shared.openURL(url)
}

关于ios - 方法 openURL :options:completionHandler compatibility in objective c,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40057071/

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