我在我的应用中使用MGSwipeTableCell
。当一个单元格被打开以显示按钮时,如果我点击另一个单元格,它会解除滑动单元格(再次隐藏按钮)。我希望先前刷过的单元格关闭按钮,然后在一个抽头中选择新单元而不是两个(即点击然后点击新单元格)。有没有办法做到这一点?
答案 0 :(得分:1)
请参阅下面的说明,我认为MGSwipeTableCell
的委托功能可能会对您有所帮助。
-(void) swipeTableCell:(MGSwipeTableCell*) cell didChangeSwipeState:(MGSwipeState) state gestureIsActive:(BOOL) gestureIsActive
{
/**
* Called when the user clicks a swipe button or when a expandable button is automatically triggered
* @return YES to autohide the current swipe buttons
**/
}
答案 1 :(得分:0)
在MGSwipeTableCell 1.5.4或更高版本上
cell.touchOnDismissSwipe = YES;
它将关闭您刷过的单元格,并选择您点按的单元格