mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
Do not freeze UITableView when cancelling swipe to delete to quickly
This commit is contained in:
parent
18820ca543
commit
feda86f5ba
1 changed files with 7 additions and 0 deletions
|
|
@ -73,6 +73,13 @@
|
|||
[self toggleRowSelectionForRowAtIndexPath:indexPath];
|
||||
}
|
||||
|
||||
/* Empty methods allow to not freeze UI...*/
|
||||
- (void)tableView:(UITableView *)tableView willBeginEditingRowAtIndexPath:(nonnull NSIndexPath *)indexPath {
|
||||
}
|
||||
|
||||
- (void)tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath {
|
||||
}
|
||||
|
||||
- (void)selectToggleButton:(BOOL)select {
|
||||
_toggleSelectionButton.selected = select;
|
||||
if (select) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue