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
if delegate != nil && delegate!.respondsToSelector("didEndDisplayingHeaderView:") && isScrollDown { delegate!.didEndDisplayingHeaderView!(section) }
if delegate != nil && delegate!.respondsToSelector("willDisplayHeaderView:") && !isScrollDown { delegate!.willDisplayHeaderView!(section) }
个人觉得再&&一个 productsTableView.dragging 的判断。虽然这样可以解决, cell跳跃的现象,但是点击cell的动画就没了。
不知作者有何高见。既能保留动画,有不会出现跳跃的方法。谢谢!
The text was updated successfully, but these errors were encountered:
加一个判断就好了 #pragma mark - tabelView delegate
因为联动的原因,点击右边会影响左边,所以点击右边的时候,加个判断就好的
Sorry, something went wrong.
No branches or pull requests
if delegate != nil && delegate!.respondsToSelector("didEndDisplayingHeaderView:") && isScrollDown {
delegate!.didEndDisplayingHeaderView!(section)
}
if delegate != nil && delegate!.respondsToSelector("willDisplayHeaderView:") && !isScrollDown {
delegate!.willDisplayHeaderView!(section)
}
个人觉得再&&一个 productsTableView.dragging 的判断。虽然这样可以解决, cell跳跃的现象,但是点击cell的动画就没了。
不知作者有何高见。既能保留动画,有不会出现跳跃的方法。谢谢!
The text was updated successfully, but these errors were encountered: