"Access to PassKit Shared Cache file denied. ..."?

Viewed 698

My app under iOS 11 is logging:

Access to PassKit Shared Cache file denied. Please verify sandbox exceptions and/or file a Radar.

Haven't seen that before. Does anyone have an idea where this comes from?

(My app uses low level keychain methods not PassKit. But HockeyApp seems to.)

1 Answers

I am getting same error, and i fixed by using below code

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