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

mea*_*ers 7 ios passkit ios11

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

Access to PassKit Shared Cache file denied. Please verify sandbox exceptions and/or file a Radar.
Run Code Online (Sandbox Code Playgroud)

之前没见过.有没有人知道这是从哪里来的?

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

Asa*_*ali 0

我遇到了同样的错误,我使用下面的代码修复了

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