LocalAuthentication Error Failed to allow transfer ... context dealloc?

What does this error mean?


MyApp[17611:327263] [Client,LAContext] Failed to allow transfer to pid:202 cid:67: Error Domain=com.apple.LocalAuthentication Code=-9 "context dealloc" UserInfo={NSLocalizedDescription=context dealloc}


I previously read this threadso I don't persist my LAContext once a key has been retrieved from the secure enclave. Should I be re-using this LAContext if I need to retrieve multiple keys?

Error -9 in the

LAErrorDomain
is
LAErrorAppCancel
, and the doc comments for that say:
/// Authentication was canceled by application (e.g. invalidate was called while
/// authentication was in progress).

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"
LocalAuthentication Error Failed to allow transfer ... context dealloc?
 
 
Q