Sean-Wang

Results 16 comments of Sean-Wang

![image](https://cloud.githubusercontent.com/assets/1193073/8691243/7a3e7afa-2af2-11e5-86bd-bb45c75f8a09.png) This is my theme. OS X + Atom 1.0.2 + atom-node-debugger 1.1.6.

@datwelk Please help me fix the problem, thanks.

I'm sorry. I'd like to set the record straight, I use RDRStickyKeyboardView inside a UIViewController, but UIViewController contain UITableView. ``` self.contentWrapper = [[RDRStickyKeyboardView alloc] initWithScrollView:self.commentTableView]; self.contentWrapper.frame = self.view.bounds; self.contentWrapper.autoresizingMask =...

Modify the RDRStickyKeyboardView's demo according to my project process, it works well. But, if I delete the code in the `RDRStickyKeyboardView.m` ``` NSCAssert(!(CGRectEqualToRect(keyboardFrame, CGRectZero) && self.inputViewKeyboard.superview == nil), nil); ```...

@cherishloveyou You can define inputView max height in RDRStickyKeyboardView.m, accurate to say that, `static inline CGFloat RDRTextViewHeight(UITextView *textView)` function.

尝试过 3.3 版本,问题一样,无法更新订阅。

``` if ([self respondsToSelector:@selector(automaticallyAdjustsScrollViewInsets)]) { self.automaticallyAdjustsScrollViewInsets = NO; UIEdgeInsets insets = self.tableView.contentInset; insets.top = self.navigationController.navigationBar.bounds.size.height + [UIApplication sharedApplication].statusBarFrame.size.height; self.tableView.contentInset = insets; self.tableView.scrollIndicatorInsets = insets; } [tableView addPullToRefreshWithActionHandler:^{ // prepend data...

Thanks @MikeKogan, your solution is even better.