[Solved] Unrecognized selector sent to instance for my tap gesture


You don’t know how to make the correct selector for this method. (It would be "didtapContainerViewWithGesture:", but clearly you don’t know that.)

So don’t try. Use #selector syntax and let the compiler form the selector for you!

Just say #selector(didtapContainerView). Done.

0

solved Unrecognized selector sent to instance for my tap gesture