静态UITableView中的可滑动单元格

时间:2014-05-18 06:30:04

标签: ios objective-c uitableview swipe

我有一个静态UITableView(在故事板中创建),包含一定数量的部分和单元格。现在,我想让一个特定的细胞可以移动。我不想删除该行,我只想在非静态UITableView中滑动单元格时显示一个打印按钮,通常是删除按钮。

如何在静态UITableView可转换中准确制作一个单元格?

1 个答案:

答案 0 :(得分:3)

你可以在单元格顶部添加UISwipeGestureRecognizer

//The setup code (in viewDidLoad in your view controller)
UISwipeGestureRecognizer *swipeGesture = 
  [[UISwipeGestureRecognizer alloc] initWithTarget:self 
                                          action:@selector(handleSingleTap:)];
[cell addGestureRecognizer:swipeGesture];

//The event handling method
- (void)handleSingleTap:(UISwipeGestureRecognizer *)recognizer {
  CGPoint location = [recognizer locationInView:[recognizer.view superview]];

  //Do stuff here...
}