I have a button in horizontal UITableView inside another UITableView. When I tap a button application crashes with this message “unrecognized selector sent to instance”. As I understand the problem is that another class handles tap but I don’t know how to fix it.
I have a button in horizontal UITableView inside another UITableView. When I tap a
Share
I have just solved. Maybe someone will need my solution.
I moved
from view (actually this view is shown instead of cell
)
to UITableView class to
and changed a little bit
so, now tap handles not a view but uitableview class and everything works fine