I have classic TableView where you can delete item if you swipe and than clicking on the button. I know how to set custom background on the cell, but I can\'t find how I can
It's pretty easy.
And that's it! All you need then is to use the font by its name like this
cell.textLabel.font = [UIFont fontWithName:@"FontName" size:16];
Even easier. All you need is
cell.textlabel.textcolor = UIColor.redColor()
In your case you want to change the font of the RowAction. So I think of only 2 solutions. One to use [UIColor colorWithPatterImage:]
Or you can user [[UIButton appearance] setTitleColor:[UIColor orangeColor] forState:UIControlStateNormal]; because the RowAction contains a button.