EGOTableViewPullRefresh
EGOTableViewPullRefresh copied to clipboard
A similar control to the pull down to refresh control created by atebits in Tweetie 2.

Hi, Has anyone experienced similar issues? The scrollView scrolls up too much and the first section header of the table is "hidden" I had to apply a dirty fix, ```...
ios8下拉闪烁
在ios8下,egoRefreshScrollViewDidEndDragging的时候,scrollView.contentInset = UIEdgeInsetsMake(60.0f, 0.0f, 0.0f, 0.0f); 会触发egoRefreshScrollViewDidScroll 方法,scrollView.contentOffset.y的值变为60,然后恢复为原先推动的高度值。这个过程会导致跳动闪烁。 可以增加异步调整。 dispatch_async(dispatch_get_main_queue(), ^{ [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:0.2]; scrollView.contentInset = UIEdgeInsetsMake(60.0f, 0.0f, 0.0f, 0.0f); [UIView commitAnimations]; });
when EGOTable view controller push to NavigationController and pull down the scroll to the bottom then back to pre view controller,the method - (void)scrollViewDidScroll:(UIScrollView *)scrollView will still be executed so...
just like title. i want a EGOTableViewPullRefresh within pull up from bottom of TableView to refresh. i very look forward to it come true. thank you!
This was working perfectly when I used it with a UITableViewController. But I am now trying to use it in a UIViewController, where I programmatically create the tableView. Most of...
Used this in an app that had a streaming state. If the connection is broken, then I wanted to use the pull-to-refresh to re-establish the connection. This is very much...
Hi there! This is WhitespaceBot. I'm an [open-source](https://github.com/Gunio/LightWrite) robot that removes trailing white space in your code, and gives you a gitignore file if you didn't have one! Why whitespace?...