This is an old question, however I will post a fairly reasonable solution that I found.
At first I tried to set the global hue color to what I wanted, but that didn't work. Fortunately, just changing the color of the shade of the table looked. Adapting the code from here :
let color: UIColor // ... if let moreTableView = moreNavigationController.topViewController?.view as? UITableView { moreTableView.tintColor = color }
However, this still does not affect the edit view controller.
EDIT: Actually, there is an easier way to do this, see this answer .
shawkinaw
source share