I have 2 scrollviews, super scrollview includes multiple scrollviews inside. Super scrollview will make paging and horizontal scrolling, while each small scrollview makes vertical scrolling without paging.
How can I solve this issue?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think the best way to solve that problem is to avoid it.
But you may be able to get acceptable behavior from it by manipulating the
UIGestureRecognizers that each has. There are three on each scroll view. You could tell some of them that that have to wait for others to fail before they succeed. This could mollify the angry interactions between them.Good luck.