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:
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.