iOS 设置tableview头部不可以向下拉动..
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
CGPoint point = scrollView.contentOffset;
if (point.y <= - 64) {
self.tableView.contentOffset = CGPointMake(0.0, - 64.0);
}
}
posted on 2016-09-26 17:17 taiyang2014 阅读(613) 评论(0) 编辑 收藏 举报