I have a swipe action to \'complete\' a task in my to-do list app. This is the image I have set:
However when the cell is swiped, the image looks like this:
In iOS 13 with SF Symbol, simply use UIImageRenderingModeAlwaysOriginal to change the symbol color.
replyAction.image = [[UIImage systemImageNamed: @"arrowshape.turn.up.left.circle.fill"] imageWithTintColor: self.view.tintColor renderingMode: UIImageRenderingModeAlwaysOriginal];