fastred / SloppySwiper

UINavigationController delegate that allows swipe back gesture to be started from anywhere on the screen (not just from the edge).
MIT License
806 stars 107 forks source link

Fix locking when swiping on root view controller #7

Closed renssies closed 9 years ago

renssies commented 9 years ago

In one of my projects I got reports of users having a view "locking" when they tried to swipe to the right, to see if there is a hamburger menu.

I was able to successfully reproduce this and is most likely caused by sending touches to both the pan gesture and the underlaying view. Which was is this case a UICollectionView. This caused the animation to start, but never finish. Causing a overlay over the current view, giving the impression of locking the whole app.

fastred commented 9 years ago

Superb pull request. Thanks!