UITableViewCell中的自定义滑动功能不起作用

问题描述 投票:0回答:2

我需要以某种方式将计数添加到uitableviewcell中,这样当我触发滑动功能时,应在相应的单元格中增加计数,而在点击时应减少计数。

(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = nil;
    NSString *CellIdentifier = @"sample";
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
    }
    UISwipeGestureRecognizer *recognizer;

    recognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapFrom:)];
    [self addGestureRecognizer:recognizer];
    self.tapRecognizer = (UITapGestureRecognizer *)recognizer;
    recognizer.delegate = self;
    [recognizer release];

    recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFrom:)];

    [self addGestureRecognizer:recognizer];
    [recognizer release];
    UILabel *cookieLabel = [[UILabel alloc] initWithFrame:CGRectMake(5,5, 120,30)];
    cookieLabel.text = @"hello";
    cookieLabel.font = [UIFont systemFontOfSize:15.0f];
    cookieLabel.textColor = [UIColor blackColor];
    cookieLabel.backgroundColor = [UIColor redColor];
    [cell.contentView addSubview:cookieLabel];
    [cookieLabel release];
    cell.selectionStyle = UITableViewCellSelectionStyleGray;

    costLabel = [[UILabel alloc] initWithFrame:CGRectMake( 200, 5, 230, 30)];
    //costLabel.text = handleSwipeFrom:;
    costLabel.font = [UIFont systemFontOfSize:15.0f];
    costLabel.textColor = [UIColor blackColor];
    costLabel.backgroundColor = [UIColor greenColor];
    [cell.contentView addSubview:costLabel];
    [costLabel release];
    [self setUserInteractionEnabled:YES];

    return cell;
}
swipe tap
2个回答
3
投票

不要将UISwipeGestureRecognizer添加到单元格。将其添加到UITableView。

我使用TISwipeableTableView作为基础,并对其进行了大量修改以使其正常工作(它们进行了自己的触摸处理,从而产生了“古怪,不自然”的感觉)]

- (void)didSwipe:(UIGestureRecognizer *)gestureRecognizer {
  if ([MRUserDefaults sharedMRUserDefaults].isSwipeMenuEnabled) {
    if (gestureRecognizer.state == UIGestureRecognizerStateEnded) {
      CGPoint swipeLocation = [gestureRecognizer locationInView:self];
      NSIndexPath *swipedIndexPath = [self indexPathForRowAtPoint:swipeLocation];
      TISwipeableTableViewCell* swipedCell = (TISwipeableTableViewCell *)[self cellForRowAtIndexPath:swipedIndexPath];

      if ([swipedCell isKindOfClass:[TISwipeableTableViewCell class]]) {
        if (![swipedIndexPath isEqual:indexOfVisibleBackView]) {
          [self hideVisibleBackView:YES];
          [swipedCell revealBackView];
          [self setIndexOfVisibleBackView:swipedIndexPath];  

          if (swipeDelegate && [swipeDelegate respondsToSelector:@selector(tableView:didSwipeCellAtIndexPath:)]){
            [swipeDelegate tableView:self didSwipeCellAtIndexPath:[self indexPathForRowAtPoint:swipeLocation]];
          }        
        }
      }
    }  
  }
}

- (id)initWithFrame:(CGRect)frame style:(UITableViewStyle)style {
  if ((self = [super initWithFrame:frame style:style])) {
    if ([MRUserDefaults sharedMRUserDefaults].isSwipeMenuEnabled) {
      UIGestureRecognizer *swipeGesture = [[[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(didSwipe:)] autorelease];
      [self addGestureRecognizer:swipeGesture];
    }
  }
  return self;
}

这应该使您入门。


0
投票

[[cell addGestureRecognizer:recognizer]

© www.soinside.com 2019 - 2024. All rights reserved.