如何在表格单元格上滑动并使其调用函数?

时间:2011-07-08 08:09:49

标签: iphone ios cocoa-touch

如何在表格单元格上滑动手指并调用函数(我将视图控制器推送到导航控制器)?

1 个答案:

答案 0 :(得分:8)

只需在单元格中添加UISwipeGestureRecognizer即可。

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

    UISwipeGestureRecognizer *g = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(cellWasSwiped:)];
    [cell addGestureRecognizer:g];
    [g release];
}

然后实现处理滑动的方法:

- (void)cellWasSwiped:(UIGestureRecognizer *)g {
    NSLog(@"Swiped");
}