> On Nov 4, 2017, at 9:38 AM, Dennis Weissmann via swift-users
> wrote:
>
> Hi swift-users,
>
> In a project (iOS 11 only) we use Touch ID for authentication and handle
> errors like so:
>
> private func handleLocalAuthenticationError(_ error: LAError) {
> switch error.code {
> case .
Hi swift-users,
In a project (iOS 11 only) we use Touch ID for authentication and handle errors
like so:
private func handleLocalAuthenticationError(_ error: LAError) {
switch error.code {
case .userCancel, .appCancel, .systemCancel:
// Handle cancelation
case .authentication