我從這個例子定製刷卡識別類: How to detect a swipe-to-delete gesture in a customized UITableviewCell?進入編輯模式,單列/細胞
- (void)cellSwiped:(UIGestureRecognizer *)gestureRecognizer {
if (gestureRecognizer.state == UIGestureRecognizerStateEnded) {
UITableViewCell *cell = (UITableViewCell *)gestureRecognizer.view;
NSIndexPath* indexPath = [self.tableView indexPathForCell:cell];
}
}
現在我想選擇單行在indexPath並啓用編輯模式吧,有人能告訴我如何做到這一點嗎?
我明白你想說什麼,但我對iOS編程還很陌生,我不完全明白要做什麼。我做了這樣的事情,似乎沒有工作。 if([notifTable cellForRowAtIndexPath:indexPath]){[notifTable cellForRowAtIndexPath:indexPath] setEditing:YES animated:YES]; 返回YES; – user2180859 2013-03-18 04:17:33