FSScrollViewNestTableView icon indicating copy to clipboard operation
FSScrollViewNestTableView copied to clipboard

这是一个scrollView嵌套tableView的手势冲突解决方案

Results 14 FSScrollViewNestTableView issues
Sort by recently updated
recently updated
newest added

设置 `[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:20 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:YES];` 没有效果

当顶部的分类顶住后,再往上推,松手后mainTableView 的这个scrollViewDidScroll无限执行,致使卡顿,左右滑动后才能停止,

提不了新分分支 也提不了pr。。。。 FSSegmentTitleView.m 第202行 成员变量尚未赋值 应将208行提上来 在vc数量和titleView数量不一致时(vc数量小于title数量)点击title 崩溃

如果scrollView执行这个代理:scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate,而不走scrollViewDidEndDecelerating:(UIScrollView *)scrollView这个代理,就会有问题,FSContenViewDidEndDecelerating:(FSPageContentView *)contentView startIndex:(NSInteger)startIndex endIndex:(NSInteger)endIndex这个代理就不会执行了

每次稍微滑动,vc的titile就会显示滑动方向的,但是我并没有滑动到对应的界面,这个问题怎么破?

下面滚动的视图同时有uicollectionview和tableview 或只有uicollectionview的时候还是有手势冲突问题,滚动上顶部的问题就滚动不了了。请问题怎么解决

懒加载的方式去创建: -(FSSegmentTitleView *)titleView{ if (!_titleView) { _titleView = [[FSSegmentTitleView alloc]initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.view.bounds), 40) titles:@[@"相册",@"动态",@"评价"] delegate:self indicatorType:FSIndicatorTypeDefault]; _titleView.indicatorColor = ZF_HOME_NORMAL_BG; _titleView.titleSelectColor = ZF_HOME_NORMAL_BG; _titleView.backgroundColor = ZF_GLOBL_BG; } return _titleView; } //显示的时候要这样效果更好的,不然每次都是默认点击了第一个按钮了,后面的数据都乱了,懒加载就ok了不会每次都去选择第一个...

解决办法是: 把FSPageContentView.m一个属性改成如下 @property (nonatomic, weak) UIViewController *parentVC;//父视图