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

Cell alpha animation #84

Open dorinsimina opened 9 years ago

dorinsimina commented 9 years ago

Hi,

By using MCSwipeTableViewCell is there a way to animate cell's alpha while swiping from 1.0 to 0.0 and in the same time the sliding view alpha to be from 0.0 to 1.0?

I've managed to animate cell's alpha while swiping from 1.0 to 0.0 by using the method 'didSwipeWithPercentage', but the sliding view is also affected:

cell.alpha = 1.0 + percentage;

Thanks.