私はcellForRowAtIndexPath:
メソッドでUISwipeGestureRecognizer
をUITableViewCell
にアタッチしています:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
UISwipeGestureRecognizer *gesture = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(didSwipe:)];
gesture.direction = UISwipeGestureRecognizerDirectionRight;
[cell.contentView addGestureRecognizer:gesture];
[gesture release];
}
return cell;
}
ただし、スワイプが成功すると、didSwipe
メソッドは常に2回呼び出されます。最初はジェスチャが開始および終了するためだと思っていましたが、gestureRecognizer自体をログアウトすると、両方とも「終了」状態になります。
-(void)didSwipe:(UIGestureRecognizer *)gestureRecognizer {
NSLog(@"did swipe called %@", gestureRecognizer);
}
コンソール:
2011-01-05 12:57:43.478 App[20752:207] did swipe called <UISwipeGestureRecognizer: 0x5982fa0; state = Ended; view = <UITableViewCellContentView 0x5982c30>; target= <(action=didSwipe:, target=<RootViewController 0x5e3e080>)>; direction = right>
2011-01-05 12:57:43.480 App[20752:207] did swipe called <UISwipeGestureRecognizer: 0x5982fa0; state = Ended; view = <UITableViewCellContentView 0x5982c30>; target= <(action=didSwipe:, target=<RootViewController 0x5e3e080>)>; direction = right>
私は本当に理由を本当に知りません。私は明らかに終了状態を確認しようとしましたが、とにかく両方が「終了」として入ってくるので、それは役に立ちません...何かアイデアはありますか?
ジェスチャ認識エンジンをセルに直接追加する代わりに、viewDidLoad
のtableviewに追加できます。
didSwipe
- Methodで、影響を受けるIndexPathとセルを次のように決定できます。
-(void)didSwipe:(UIGestureRecognizer *)gestureRecognizer {
if (gestureRecognizer.state == UIGestureRecognizerStateEnded) {
CGPoint swipeLocation = [gestureRecognizer locationInView:self.tableView];
NSIndexPath *swipedIndexPath = [self.tableView indexPathForRowAtPoint:swipeLocation];
UITableViewCell* swipedCell = [self.tableView cellForRowAtIndexPath:swipedIndexPath];
// ...
}
}
アプリデリゲートで動作します
- (void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
// code
}
これと同じ問題があり、テーブルビューの属性で[スクロールを有効にする]をオンにして解決しました。
私のテーブルビューはスクロールする必要がないため、他の方法でアプリに影響を与えることはありません。ただし、スワイプジェスチャの後、最初の応答しないタップを取得することはありません。
AwakeFromNibメソッドでジェスチャーを追加しても問題なく機能します。
class TestCell: UITableViewCell {
override func awakeFromNib() {
super.awakeFromNib()
let panGesture = UIPanGestureRecognizer(target: self,
action: #selector(gestureAction))
addGestureRecognizer(panGesture)
}
@objc func gestureAction() {
print("gesture action")
}
}