EGOTableViewPullRefresh icon indicating copy to clipboard operation
EGOTableViewPullRefresh copied to clipboard

Bug, missing offset from navigation bar

Open CaledoniaProject opened this issue 11 years ago • 1 comments

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,

- (void)egoRefreshScrollViewDataSourceDidFinishedLoading:(UIScrollView *)scrollView {   

    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:.3];
    // !!!! dirty fix !!!!
    [scrollView setContentInset:UIEdgeInsetsMake(60.0f, 0.0f, 0.0f, 0.0f)];
    [UIView commitAnimations];

    [self setState:EGOOPullRefreshNormal];

}

CaledoniaProject avatar Mar 14 '15 09:03 CaledoniaProject

same problem

amau96 avatar Dec 12 '15 19:12 amau96