Custom UITableViewCellEditingStyle

Is it possible to create a custom UITableViewCellEditingStyle, say, change the image icon /, which appears next to each line, and perhaps what action it takes.

Is it possible, and if so, how?

+3
source share
1 answer

Yes, check editingand setEditing:animated:and willTransitionToState: UITableViewCell. You will probably need a custom subclass UITableViewCell.

+3
source

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


All Articles