taffarel
taffarel

Reputation: 4045

Should I create a custom UITableViewCell?

How do I change UITableViewCellEditingStyleInsert default image to custom created?

Is there an easy way or I should create a custom UITableViewCell?

Upvotes: 1

Views: 146

Answers (1)

rmaddy
rmaddy

Reputation: 318814

The standard API doesn't support any way to customize the green plus button used for UITableViewCellEditingStyleInsert.

Your only option would be use your own button added to a cell. You wouldn't be able to use the standard editing style features of UITableView. You would need to set the cell's editing style to None and use your own method when the custom button is tapped.

Upvotes: 1

Related Questions