I have UITableView. Each UITableViewCell content UIButton. UIButton's frame is equal to UITableViewCell's frame. But scrolling is not working when I tapped on button and scroll, only when I tapped on space between cell's scrolling is working. How can I fix this problem?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||||
|
|
You need to disable the user interaction of your button. Then it will not take the touch event and you will be able to scroll properly. |
|||
|
|
|
The button is not forwarding the touch to the cell. The easiest solution would be to give the cell the appearance of a button and use the normal delegate methods. |
|||
|
|