Can't find keyplane that supports type 4 for keyboard iPhone-PortraitTruffle-NumberPad; using 20615_PortraitTruffle_iPhone-Simple-Pad_Default
Seems to be due to using UIKeyboardType.numberPad, but I do need the number pad, and the funny thing is that the app does show the number pad properly and not the default pad:
Also when calling pinCodeField.becomeFirstResponder(), I get 6 leaks:
Using Swift 4.2, iOS 12.0:
Sample code:
In the
UIViewController
holding the PinCodeTextField:In
AppDelegate
:Errors are:
When calling
pinCodeField.becomeFirstResponder()
:Seems to be due to using
UIKeyboardType.numberPad
, but I do need the number pad, and the funny thing is that the app does show the number pad properly and not the default pad:Also when calling
pinCodeField.becomeFirstResponder()
, I get 6 leaks:When going in the background:
It seems that calling
endEditing
orresignFirstResponder
while the app goes in the background causes this issue.