我创建了一个自定义UITableViewCell
并在其上放置了UITextView
元素。现在,当我点击单元格内的UITextView
时tableView:didSelectRowAtIndexPath:
未调用(在超级视图中为UITableViewController
)。
我应该UITextView
“透明”还是什么?我怎样才能做到这一点?添加按钮时,我会得到同样的效果。
答案 0 :(得分:7)
将userInteractionEnabled
属性调整为NO
someTextView.userInteractionEnabled = NO;
类似的问题:iOS: Selecting through UITextView on custom UITableViewCell