开发者

How to disable a UITableView from scrolling up vertically?

I'm using EGORefreshTableHeader in conjunction with a static cell (defined in a nib)开发者_如何学C in a UITableView.

I'd like to be able to scroll the tableview down to trigger the EGORefreshTableHeader and thus refresh the data in the static cell. BUT, as the static cell is sized to fit perfectly in the window, I want to prevent folks from being able to scroll up.

Is there a way to do this?


Try this:

CGFloat a;

-(void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
    a = scrollView.contentOffset.y;
}

-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    if (scrollView.contentOffset.y > a) 
    {
        [scrollView setScrollEnabled:NO];
        [scrollView setContentOffset:CGPointMake(0, a)];
    }
    [scrollView setScrollEnabled:YES];
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜