"拒绝访问PassKit共享缓存文件。 ..."

时间:2017-09-26 11:38:03

标签: ios ios11 passkit

我在iOS 11下的应用正在记录:

Access to PassKit Shared Cache file denied. Please verify sandbox exceptions and/or file a Radar.
以前没见过哈文。有没有人知道这是从哪里来的?

(我的应用程序使用低级别的钥匙串方法而非PassKit。但HockeyApp似乎。)

1 个答案:

答案 0 :(得分:0)

我遇到了同样的错误,并且通过使用以下代码进行了修复

let vc = CNContactViewController(forNewContact: contact)
vc.delegate = self
let navigationController: UINavigationController = UINavigationController(rootViewController: vc)
            present(navigationController, animated: false) {
                print("Present")
            }