keep on you
keep on you

Reputation: 310

How can i put UITableViewCellEditingStyleInsert on the right?

I want to know how can i put UITableViewCellEditingStyleInsert on the right in UITableView like in this picture: enter image description here

Upvotes: 1

Views: 1370

Answers (1)

BoltClock
BoltClock

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

Related Questions