UITableView to delete without confirmation

The quick question about deleting the delete function in UITableView is there a way to just go and delete the row without showing the Delete button and without waiting for user confirmation?

+3
source share
2 answers

Deploy your custom UITableViewCell and use the UISwipeGestureRecognizer . You will need to write all your logic (protocol, delegate, etc.) independently, but you will fully configure it.

+3
source

You can do this by your own code.

Take one button and click it to remove the selected row from the UiTableView

0
source

Source: https://habr.com/ru/post/1346383/


All Articles