PinCodeInputView
PinCodeInputView copied to clipboard
Use with Storyboard?
Thanks for this great library.
I am having trouble using it with Storyboard. If I do the following:
@IBOutlet var input: PinCodeInputView?
Xcode complains about using a generic type, whereas if I do something like:
@IBOutlet var input: PinCodeInputView<ItemView>?
it doesn't work either (@IBOutlet property cannot have non-'@objc' class type 'PinCodeInputView<ItemView>).
Is there any way to use the library with Storyboard? Thanks!
Ditto