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
I found false positives in our project on "unused functions"
For instance, I got the result that the func scrollViewDidScroll(_ scrollView: UIScrollView) is not being used. But actually the superclass of my class already conforms to the UIScrollViewDelegate, so this function is being called in the end.
I also noticed the same, when conforming to a UITableViewDelegate protocol, the UIScrollViewDelegate methods are flagged as being unused, while conforming to UITableViewDelegate, also makes you conform to UIScrollViewDelegate (and the functions are being triggered)