gpt4 book ai didi

ios - 如何判断您的应用程序是使用 iCloud 架构开发还是生产

转载 作者:行者123 更新时间:2023-11-29 11:38:24 25 4
gpt4 key购买 nike

如何在运行时检查我的 iCloud 容器是否连接到开发或生产架构?

最佳答案

这在通过模拟器运行时对我有用:

    let path = "<pathToProjectDirectory>/<projectName>.entitlements"

guard let data = FileManager.default.contents(atPath: path) else { return }

do {
let dict = try PropertyListSerialization.propertyList(from: data, options: .mutableContainersAndLeaves, format: nil) as! [String : Any]
print( "container-environment: \(dict["com.apple.developer.icloud-container-environment"] ?? "no key")" )
}
catch {
// error
}

关于ios - 如何判断您的应用程序是使用 iCloud 架构开发还是生产,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47931369/

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