Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a UITextView in my custom UITableViewCell and the issue is that when I tap on it it won't respond to the didSelectRowAtIndexPath or even swipe events. How can I fix this? This UITextView is not editable. The reason why I use this over a UITextField is because I want to be able to detect links easily.

share|improve this question

2 Answers

you need to forward the touch messages from UITableView to UITextView

UITextView inside UITableView

share|improve this answer
well then you're saying the whole cell has to be a UITextView? – aherlambang May 20 '11 at 0:48

The first idea that came to mind...

In cellForRow set the textfield tag as the indexpath.row

Implement - (void)textViewDidBeginEditing:(UITextView *)textView

Based on this textView.tag, call the selectrow

    [self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:textView.tag inSection:<#(NSUInteger)#>] 
animated:<#(BOOL)#> scrollPosition:<#(UITableViewScrollPosition)#>]
share|improve this answer
well, it can't respond to swipe as well right? – aherlambang May 20 '11 at 17:58
I guess not :( . – Yorxxx May 23 '11 at 9:47

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.