Re: WKWebView rejecting keyboard input

2021-04-17 Thread Robert Walsh via Cocoa-dev
canBecomeKeyWindow, the application is accepting keystrokes when it is in the small window state. Rob From: Robert Walsh Sent: Thursday, April 15, 2021 12:21 PM To: Alex Zavatone Cc: cocoa-dev@lists.apple.com Subject: Re: WKWebView rejecting keyboard input Thanks

Re: WKWebView rejecting keyboard input

2021-04-15 Thread Robert Walsh via Cocoa-dev
From: Alex Zavatone Sent: Thursday, April 15, 2021 11:26 AM To: Robert Walsh Cc: cocoa-dev@lists.apple.com Subject: Re: WKWebView rejecting keyboard input Hi Rob. One thing that I learned back in QA is that when we have a working sample and one non-working one, duplicate both

Re: WKWebView rejecting keyboard input

2021-04-15 Thread Alex Zavatone via Cocoa-dev
Hi Rob. One thing that I learned back in QA is that when we have a working sample and one non-working one, duplicate both, point your app to use them, & start removing items from the one that doesn’t work until you get back down to either it working or end up with identical items in the working

Re: WKWebView rejecting keyboard input

2021-04-15 Thread Markus Spoettl via Cocoa-dev
On 4/15/21 4:42 PM, Robert Walsh via Cocoa-dev wrote: I have an Objective-C application that creates a WKWebView to collect form input. The form has a label, an input (password) field, and two buttons. When the form is shown inside the web view by the application, the user can click the

WKWebView rejecting keyboard input

2021-04-15 Thread Robert Walsh via Cocoa-dev
I have an Objective-C application that creates a WKWebView to collect form input. The form has a label, an input (password) field, and two buttons. When the form is shown inside the web view by the application, the user can click the buttons but cannot enter text into the input field. The