liangdrime / SwipeTableView

Both scroll horizontal and vertical for segment scrollview which have a same header. — 类似半糖、美丽说主页与QQ音乐歌曲列表布局效果,实现不同菜单的左右滑动切换,同时支持类似tableview的顶部工具栏悬停(既可以左右滑动,又可以上下滑动)。兼容下拉刷新,自定义 collectionview实现自适应 contentSize 还可实现瀑布流功能
MIT License
2.29k stars 444 forks source link

我的header是SwipeHeaderView 上面放了一个UICollectionView的轮播 手按着上面的header轮播向下滑动 停止滑动了 页面也不返回到上面 如下图 #64

Open ioswukai opened 7 years ago

ioswukai commented 7 years ago

我的header是SwipeHeaderView 上面放了一个UICollectionView的轮播 手按着上面的header轮播向下滑动 停止滑动了 页面也不返回到上面 如下图 858f09adcc2aad729f95bce123b1a827

ioswukai commented 7 years ago

858f09adcc2aad729f95bce123b1a827

liangdrime commented 7 years ago

如果你实现了下拉刷新的代理:

- (BOOL)swipeTableView:(SwipeTableView *)swipeTableView shouldPullToRefreshAtIndex:(NSInteger)index {
    return NO;
}

然后,你又并没有用下拉刷新的话,返回值要返回NO,或者不要实现这个代理。