I'm trying to set view controller back button to text only.
I tried
self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStylePlain target:nil action:nil];
but it also adding the arrow image that I don't want.
how can I set only text?