拉伸 原来 就这一句话,

- (void)scrollViewDidScroll:(UIScrollView *)scrollView;

{

    CGFloat y ;

    if (scrollView.contentOffset.y < 0) {

        y = scrollView.contentOffset.y;

        self.headerView.bgImageView.frame = CGRectMake(self.tableViewHeaderView.frame.origin.x, y - 1, 320, ORIGIN_HEIGHT - y);

    }

}

posted @ 2013-08-01 17:19  路在脚下,  阅读(172)  评论(0)    收藏  举报