UIScrollView 使用MJ快速下拉刷新时, 出现跳动并且上移

一般是 设置了scrollview.pagingEnabled = YES, 引起的

目前还没找到完美的方法,  目前我的做法是取消设置pageEnabled=YES, 然后自己在scrollView的滚动代理方法里,手动判断该展示哪一页, 代理方法如下:

- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inoutCGPoint *)targetContentOffset;

当然, 也可以看这里 

https://github.com/CoderMJLee/MJRefresh/issues/311

https://github.com/CoderMJLee/MJRefresh/pull/344

你可能感兴趣的:(UIScrollView 使用MJ快速下拉刷新时, 出现跳动并且上移)