我有一个静态UITableView
(在故事板中创建),包含一定数量的部分和单元格。现在,我想让一个特定的细胞可以移动。我不想删除该行,我只想在非静态UITableView
中滑动单元格时显示一个打印按钮,通常是删除按钮。
如何在静态UITableView
可转换中准确制作一个单元格?
答案 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...
}