2

我有一个带有 UICollectionViewCells 的水平滚动 UICollectionView,其中包含一个 UITextView。有没有办法将 textview 上的手势传递给单元格,以便调用 didSelectItemAtIndexPath ?我尝试将 UITextView 子类化并将 touchesbegin/end 传递给单元格,但这没有用。

4

3 回答 3

6

您可以使视图非交互式,这将导致触摸通过:

textView.userInteractionEnabled = NO;

如果你需要它是交互式的,你可以试试这个:

textView.editable = NO;
UITapGestureRecognizer* tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapped)];
[textView addGestureRecognizer:tap];

...然后将此函数添加到您的UICollectionViewCell子类中:

-(void) tapped {
    UICollectionView *collectionView = (UICollectionView*)self.superview;
    NSIndexPath *indexPath = [collectionView indexPathForCell:self];
   [collectionView.delegate collectionView:collectionView didSelectItemAtIndexPath:indexPath];
}

虽然我没有测试过...

于 2013-03-28T13:08:39.510 回答
0

好吧,如果你的单元格是文本视图的超级视图,你可以在UITextViewDelegate方法中实现类似的东西textViewDidBeginEditing:

- (void)textViewDidBeginEditing:(UITextView *)textView {
    NSIndexPath *indexPath = [self.collectionView indexPathForCell:(UICollectionViewCell *)textView.superview];
    [self.collectionView selectItemAtIndexPath:indexPath animated:YES scrollPosition:UICollectionViewScrollPositionTop];
}
于 2013-03-28T12:31:44.200 回答
0

这似乎在 iOS6.x 中不起作用: UICollectionViewCell 中的所有视图似乎都嵌入在作为单元格的第一个子项的 UIView 中。为了获得 UITextView 所在的实际单元格,您需要再次取消引用。换句话说,顺序是(从下到上):

UITextView->enclosureUIView->UICollectionViewCell

于 2013-08-12T04:20:48.507 回答