I have table view controller and which will show all the chatting messages. Inside that tableview controller I have stickers view where user can send stickers. I want to detect swipe down function in tableview and if user create swipe downs, I want to close stickers view if sticker view is already opened. Tableview has scrollview event also that's why I cannot detect swipe down event. My sticker view is same as fb messenger sticker view.
Asked
Active
Viewed 600 times
2 Answers
1
Instead of using a gesture, you should use the UIScrollviewDelegate methods to determine if the tableview has scrolled down, then trigger the desired behavior you want.
See this answer on how to implement it
-
also calculate the speed in the direction as swipe down should be a quick gesture – Jing Feb 13 '17 at 09:34