searched already some possible fixes but all did not solve mine.
i keep clicking the cell in the uitableview rather than the buttons inside it.
here is my code:
If you have no alternative selector for the UIButton pressed inside some UITableViewCell you need turn off userInteractionEnabled for the button
UIButton
UITableViewCell
userInteractionEnabled
cellButton.userInteractionEnabled = false
In this case any button touch will propagate to the cell touch.