Bright Lee
Bright Lee

Reputation: 2326

How to make swipe to delete button smaller on UITableViewCell?

I'm stuck here for few days..

My TableViewCell's height is short. and I like it except swipe to delete button.

It's too big so that button mess my table... It's not beautiful.

please let me know how to resize the delete button on my tableview...

Thanks.

Upvotes: 2

Views: 1449

Answers (1)

trumpetlicks
trumpetlicks

Reputation: 7065

It may be more complex than originally stated, but uses most of what I was saying below. Look at this StackOverflow Link.

UITableViewCell custom editingAccessoryView - not properly dismissed

You may be able to setup your own UIView and use the editingAccessoryView property.

In this view you would implement your own delete button (however you want it to look) and capture the delete button press yourself.

Upvotes: 1

Related Questions