在UITableViewCell内滚动UITextView

时间:2013-12-17 14:47:55

标签: ios uitableview uitextview

我在UITableViewCell中有一个UITextView,但是我无法滚动文本。当我尝试滚动textView时,tableView会抓住这些触摸。

有什么方法可以解决这个问题吗?

PS:UITableViewController的子类

1 个答案:

答案 0 :(得分:1)

我认为您可以检测到被触摸的对象,如果它是UITextView,则暂时禁用UITableView滚动:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
     [super touchesBegan:touches withEvent:event];
     UITouch *touch = [touches anyObject];

     //detect if touch is on UITextView
     if ([touch.view isKindOfClass: UITextView.class]) {
         yourTableView.scrollEnabled = NO;
     }
}

不要忘记在touchesEnded中重新启用UITableView的滚动

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
        yourTableView.scrollEnabled = YES;
}