You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func applicationWillResignActive(_ application:UIApplication){
// Hide keyboard in background
window?.endEditing(true)}
Errors are:
When calling pinCodeField.becomeFirstResponder():
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:
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:pinCodeField.becomeFirstResponder()
, I get 6 leaks:It seems that calling
endEditing
orresignFirstResponder
while the app goes in the background causes this issue.The text was updated successfully, but these errors were encountered: