danielamitay / DAKeyboardControl

DAKeyboardControl adds keyboard awareness and scrolling dismissal (ala iMessages app) to any view with only 1 line of code.
Other
1.58k stars 214 forks source link

iOS 9 support #95

Open SabatinoMasala opened 9 years ago

SabatinoMasala commented 9 years ago

The keyboard refuses to go down with the swipe gesture, I'll try to find some time to take a look at it later, if anyone has any suggestions, feel free to share them.

KiddoLabs commented 9 years ago

+1

archonitex commented 9 years ago

Was anyone able to get it to work on IOS 9 ?

archonitex commented 9 years ago

Still hoping for a resolution, and IOS 9 official release is quickly approaching.. Is there any word on if this will be fixed or if somebody has found a solution?

aleksmutlu commented 9 years ago

Yeah I am struggling with this too..

dscastillo171 commented 9 years ago

It seems like iOS 9 changed the location of the keyboardView, it used to be a subview of inputAccesoryView.superview, but now you'll find a _keyboardPlaceholderView in its place.

heartbeep commented 9 years ago

+1

Time is running out folks, please figure this out for me :)

Tylerc230 commented 9 years ago

There is now a 3rd window added to UIApplication.sharedApplication().windows ("UIRemoteKeyboardWindow") when the keyboard is present. In this you will find the proper "UIInputSetHostView" view to manipulate.

rcmstark commented 8 years ago

+1

AndresCanella commented 8 years ago

I created a quick fix and submitted a pull request based on Tylerc230 hints. The code is rushed but seems to be working. https://github.com/danielamitay/DAKeyboardControl/pull/98

AndresCanella commented 8 years ago

Seems my quick fix only fixes for portrait, not for landscape. Can anyone confirm this? https://github.com/danielamitay/DAKeyboardControl/pull/98#issuecomment-144373038