I am implement a scorllable UITableview Cell and I get into a problem:
On the common tableview cell, I added a scrollview
. On that scrollview
, I added another cell called socialcell
. I know it's weird to add a cell to another cell, but it doesn't matter and you can just take it as a view. On the socialcell
, there is a button
. The problem is that the button
can't receive any touch event, and the touch is received by the tableview.
It's been checked that all of the views were added to their parent view correctly.
I have viewed the UI hierarchy and the button is right on the top. Is it the problem of iOS?
Thanks in advance!