I have a UIViewController with title "La Bolsa al minuto". When I push to another VC, I can see the back button with text "< Back". This is the code:
self.title = @"La Bolsa al minuto";
[self.navigationController pushViewController:detail animated:YES];
If I shorten the title (one letter is enough), the back button item displays "< La Bolsa al minut".
self.title = @"La Bolsa al minut";
[self.navigationController pushViewController:detail animated:YES];
Is there any way to reduce that title size to let me display the full title?