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
我在左侧测滑页面上放了一个tableView。 当我拖拽的手势在tableView上的时候,我是想侧滑的,结果y变了
The text was updated successfully, but these errors were encountered:
//处理 popView 跟 列表的拖拽冲突 func scrollViewWillBeginDragging(_ scrollView: UIScrollView) { print("1111111") listDragChanged?(true) }
func scrollViewDidEndDragging(_ scrollView: UIScrollView, willDecelerate decelerate: Bool) { print("222222") listDragChanged?(false) } musicSelectView.listDragChanged = { [weak self] isDraging in guard let weakSelf = self else {return} weakSelf.popView?.dragStyle = isDraging ?.NO :.y_Positive }
Sorry, something went wrong.
No branches or pull requests
我在左侧测滑页面上放了一个tableView。
当我拖拽的手势在tableView上的时候,我是想侧滑的,结果y变了
The text was updated successfully, but these errors were encountered: