Is there a way to remove the title of back button items in all view controllers of an app?
Note: The important thing is the all word. The closest I've been is with this solution:
[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(0, -60)
forBarMetrics:UIBarMetricsDefault];
but as I mention in the comment there's an issue with large titles being pushed to the right so that this solution is not valid.