From da4c6b7a9d44541ac32d07a1bad0addb8d714ca6 Mon Sep 17 00:00:00 2001 From: Alexey Gerasimov Date: Wed, 26 Apr 2017 20:00:44 +0300 Subject: [PATCH] PassCodeViewController fixed --- .../PassCode/View/BasePassCodeViewController.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LeadKitAdditions/LeadKitAdditions/Controllers/PassCode/View/BasePassCodeViewController.swift b/LeadKitAdditions/LeadKitAdditions/Controllers/PassCode/View/BasePassCodeViewController.swift index e88e3a0..0aae75b 100644 --- a/LeadKitAdditions/LeadKitAdditions/Controllers/PassCode/View/BasePassCodeViewController.swift +++ b/LeadKitAdditions/LeadKitAdditions/Controllers/PassCode/View/BasePassCodeViewController.swift @@ -159,19 +159,19 @@ open class BasePassCodeViewController: UIViewController { } // override to change Images - func imageFor(type: PinImageType) -> UIImage { + open func imageFor(type: PinImageType) -> UIImage { assertionFailure("You should override this method: imageFor(type: PinImageType)") return UIImage() } // override to change error text - func errorDescription(for error: PassCodeError) -> String { + open func errorDescription(for error: PassCodeError) -> String { assertionFailure("You should override this method: errorDescription(for error: PassCodeError)") return "" } // override to change action title text - func actionTitle(for passCodeControllerState: PassCodeControllerState) -> String { + open func actionTitle(for passCodeControllerState: PassCodeControllerState) -> String { assertionFailure("You should override this method: actionTitle(for passCodeControllerState: PassCodeControllerState)") return "" }