Reputation: 275
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.
Upvotes: 0
Views: 615
Reputation: 11597
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
Upvotes: 1
Reputation: 448
Upvotes: 0