7

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.)

meaning-matters
  • 21,929
  • 10
  • 82
  • 142
  • I have the same issue, but so far it occured only on a IPhone X. Other Phones with IOS 11 work fine. – NPadrutt Nov 29 '17 at 12:48
  • 1
    In what context do you see this? I'm seeing it when I tap on a mailto link in a WKWebView. – Chris Prince Feb 26 '18 at 22:55
  • 3
    The same message end app freezes when performing presentViewController for [CNContactViewController viewControllerForContact:] device iPhone7; OS:12.1.4; no SIM; device has lock with pin (no fingerprint). CNContactStore has CNAuthorizationStatusAuthorized permission – A. Petrov Feb 21 '19 at 08:51

1 Answers1

0

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")
            }
Asad ali
  • 245
  • 1
  • 2
  • 13