A delegate with different protocol types – Ios swift
protocol CellActionHandling { func didTapOptionButton() func didTapEditButton() func notActiveViewAction(state: Cell.State) } So I had a delegate protocol (for a cell) with three methods, it was being implemented by two classes so that those classes can respond to actions. But one…