teambition/TBEmptyDataSet

Impossible to override gestureRecognizer shouldRecognizeSimultaneouslyWith method when pod is added

KellyBennett opened this issue · 1 comments

public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool

needs to be

'open func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool'

because you can't override methods that aren't in the same module.

Thanks for feedback!