Reputation: 310
I want to know how can i put UITableViewCellEditingStyleInsert on the right in UITableView like in this picture:
Upvotes: 1
Views: 1370
Reputation: 723428
You can create a UIButton
with the type UIButtonTypeContactAdd
and add it as an accessory view:
UIButton *accessory = [UIButton buttonWithType:UIButtonTypeContactAdd];
[cell setAccessoryView:accessory];
The icon is blue, though; if you want it to be green like UITableViewCellEditingStyleInsert
, you have to make a button with a custom image instead of using UIButtonTypeContactAdd
.
Upvotes: 7