Re: Custom keyboard with search bar not behaving

2018-08-20 Thread Steve Mills
On Aug 20, 2018, at 13:35, Saagar Jha wrote: > > What does [UIApplication.sharedApplication.keyWindow > performSelector:@selector(firstResponder)] give you? It correctly shows it to be the UITextView I currently have in the wrapper app, both before and after I activate and cancel the search

Re: Custom keyboard with search bar not behaving

2018-08-20 Thread Saagar Jha
What does [UIApplication.sharedApplication.keyWindow performSelector:@selector(firstResponder)] give you? Saagar Jha > On Aug 20, 2018, at 06:16, Steve Mills wrote: > > I guess I'll try this list as well. > > I’m implementing a custom keyboard for iOS. It contains a UISearchBar the > user

Custom keyboard with search bar not behaving

2018-08-20 Thread Steve Mills
I guess I'll try this list as well. I’m implementing a custom keyboard for iOS. It contains a UISearchBar the user can use to filter the “keys” they can use to type. When the search button is used, I call [searchBar resignFirstResponder] to have the search bar give up its capture of input. The