You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Will work on a fix soon. Actually numberOfTouches will ALWAYS be > 0, when the state is "began", or when another finger is added. I guess this is caused in a state of CANCEL.
After further research - it seems like UIPanGestureRecognizer is indeed unstable under stress testing. Causing 0 touches when it has a minimum of 1. Could be a bug in iOS 8 or something. Anyway I'll add a fix.
A tester has came back to me saying that when they stress test the double tap gesture of a chart it causes a crash.
I have been able to reproduce this issue and when it crashes the below exception is logged.
From looking at your Classes I can see that only the
BarLineChartViewBase
has aUIPanGestureRecognizer
.A potential fix to avoid this crash is to check for the number of touches before processing the gesture.
I have modified the first line in the
panGestureRecognized
method of theBarLineChartViewBase
Class toThe text was updated successfully, but these errors were encountered: