, UITableView ( ), , contentInset reset (0,0,0,0). , , ...
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView
willDecelerate:(BOOL)decelerate {
if (scrollView.contentOffset.y < -kRefreshDeltaY) {
animation = ^{
[self setContentInset:UIEdgeInsetsMake(kRefreshDeltaY,
0, 0, 0)];
};
[UIView animateWithDuration:0.3
delay:0
options:UIViewAnimationOptionAllowUserInteraction
animations:animation
completion:completion];
}
}
subviews UITableView, .