DAKeyboardControl
DAKeyboardControl copied to clipboard
DAKeyboardControl adds keyboard awareness and scrolling dismissal (ala iMessages app) to any view with only 1 line of code.
I am facing an issue while using DAKeyBoardControler with Intercom ios sdk. https://github.com/intercom/intercom-ios/issues/80 Their iOS team told me, "We have NSNotifications for when Intercom opens and closes. Anything in the...
Not sure how to reproduce, but has been showing up in my crash logs. Here is the section that has problems ([line 222](https://github.com/danielamitay/DAKeyboardControl/blob/cbac2f04ed8d2a2e6f576bd51efbe2c94171dcfb/DAKeyboardControl/DAKeyboardControl.m#L222)): ``` obj-c - (void)inputKeyboardDidShow { // Grab...
Trying to use this control in a new app that requires Storyboard/Autolayout. I see you added a 2nd block 'constraintBasedActionHandler' to each method, but I don't see any examples on...
Follow-up of issue #92, grabbing the keyboardView now happens in inputKeyboardWillShow instead of inputKeyboardDidShow. Removed the observer for UIKeyboardDidShowNotification as it no longer served any purpose.
In `inputKeyboardWillShow` the visibility of keyboardActiveView gets set with `self.keyboardActiveView.hidden = NO;` but the property `keyboardActiveView` only gets set in `inputKeyboardDidShow`, which causes an issue where the keyboard is hidden...
in iOS7 the `UIKeyboardFrameEndUserInfoKey` we get in `- (void)inputKeyboardWillHide:(NSNotification *)notification`is CGRect: {{inf, inf}, {0, 0}} The result is that `!CGRectIsNull(keyboardEndFrameView)` will fail and `frameBasedKeyboardDidMoveBlock` is never called with `closing`set to...
I discovered that when I change from one UITextField / UITextView to another that has a diferrent UITextAutocorrectionType, the keyboard frame size seems to be invalid causing the 'attached view'...
Have an iPad Modal issue where a gap presents itself between the "message bar" view and the keyboard when you rotate from portrait to landscape. The gap is always present...
I tried in scrollViewWillBeginDragging method and keyboard hiding, but keyboard after it doesn't work (keys are not pressed). - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView { [self.view hideKeyboard]; }
Hi, I'm usiing this DAKeyboardControl in my app for chat. It was good and I was pleased until I found several issue. Especially this issue is very annoying and can't...