我创建了一个自定义的UITableViewCell并在其上放置了一个UITextView元素.现在,当我单击单元格内的UITextView时,不会调用didSelectRowAtIndexPath:(在superview中是一个UITableViewController).
解决方法
将userInteractionEnabled属性调整为NO
someTextView.userInteractionEnabled = NO;
类似的问题:iOS: Selecting through UITextView on custom UITableViewCell
@H_502_30@