Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
can you add some code as well, that you are using for creating cell? Also try disabling user interaction of button./ – rishi Jun 7 '12 at 13:40
why do you need buttons at all? Use the tableview delegate to recognize touches on the cells! – jaydee3 Jun 7 '12 at 13:41
@rishi your suggestion about user interaction is right! thanks a lot! Can you post this as answer? – RomanHouse Jun 7 '12 at 13:49
@RomanHouse - Done!!!and welcome :) – rishi Jun 7 '12 at 13:52

2 Answers

up vote 1 down vote accepted

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.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.