We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
解决办法 将tycyclepageview 中的 setcontentoffset:offset animation :animation 改成 [UIView animateWithDuration:0.2 animations:^{ _collectionView.contentOffset = CGPointMake(offset, _collectionView.contentOffset.y); }];
The text was updated successfully, but these errors were encountered:
contentOffset这个不是只读属性吗?也能修改? 我也遇到这个问题了,item滚动时点一下 就停止了
Sorry, something went wrong.
是的,切换banner的时候点击item,滚动会停在两张图片中间,用了一楼的方法,是可以防止滚动时点击,但是滚动动效明显不好看了,会出现前一页是空白页 把0.2 改0.5 就看的很明显了
No branches or pull requests
解决办法 将tycyclepageview 中的 setcontentoffset:offset animation :animation 改成
[UIView animateWithDuration:0.2 animations:^{
_collectionView.contentOffset = CGPointMake(offset, _collectionView.contentOffset.y);
}];
The text was updated successfully, but these errors were encountered: