I am trying to implement the native TableView fuction Swipe to delete
it doesn't give any error but when swiping nothing is happening.
Could you please advise how to implement this method correctly.
Narek
B4X:
#If OBJC
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return YES - we will be able to delete all rows
return YES;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
// Perform the real delete action here. Note: you may need to check editing style
// if you do not perform delete only.
NSLog(@"Deleted row.");
}
#End If
it doesn't give any error but when swiping nothing is happening.
Could you please advise how to implement this method correctly.
Narek