我在iOS 11下的应用程序正在记录日志:
Access to PassKit Shared Cache file denied. Please verify sandbox exceptions and/or file a Radar.以前没见过这样的情况。有人知道这是从哪里来的吗?
(我的应用程序使用低级密钥链方法,而不是PassKit。但HockeyApp似乎做到了。)
发布于 2019-08-26 17:23:19
我得到了同样的错误,我使用下面的代码修复了
let vc = CNContactViewController(forNewContact: contact)
vc.delegate = self
let navigationController: UINavigationController = UINavigationController(rootViewController: vc)
present(navigationController, animated: false) {
print("Present")
}https://stackoverflow.com/questions/46425489
复制相似问题