teodorpatras / EasyTipView

Fully customisable tooltip view in Swift for iOS.
MIT License
3.07k stars 535 forks source link

How to hide tooltip in tableview cell while scrolling tableview #194

Closed dhirajRoundr closed 3 years ago

dhirajRoundr commented 4 years ago

I have tried many ways but did not works for me. I am able to hide when close the view controller but can not hide while scrolling tableview. Thanks in advance.

priyankgandhi0 commented 2 years ago

use scrollviewdidscroll method like this

func scrollViewDidScroll(_ scrollView: UIScrollView) { self.tipView?.dismiss() }