alikaragoz / MCSwipeTableViewCell

:point_up_2: Convenient UITableViewCell subclass that implements a swippable content to trigger actions (similar to the Mailbox app).
MIT License
2.96k stars 411 forks source link

Simulate swipe? #85

Open MKGitHub opened 9 years ago

MKGitHub commented 9 years ago

Is it possible to simulate the swipe for a small percentage, just like a tap to show the user that a swipe is possible?

budidino commented 8 years ago

I've tried to do the same for my project... it would be a nice feature if it was built in. I ended up building a custom animation of the simulated swipe just to inform the users they could swipe the cells

theolof commented 8 years ago

@budidino Can you give us some hints on how you did that? I'd like to show my users more clearly how to use it.

budidino commented 8 years ago

@theolof, I ended up displaying an imageView over the cell and then animating it. The imageView had an image of the actual cell + the actions on the left and right side. It was kind of hacky, but that was the only way I knew how to solve the problem :)

theolof commented 8 years ago

thanks, @budidino, I suspected you did something like that :-) Probably the way I will go too.

ricsantos commented 7 years ago

Agree this feature would be great to aid with discoverability.

This issue seems to be a duplicate of #75 but explains the problem better.

ricsantos commented 7 years ago

This fork https://github.com/keyper/MCSwipeTableViewCell has a working implementation.