I am IOS Developer. I am using navigation controller. If I push to next page then Back button title always Show "Back". I try all this method for remove titles in viewWillAppear, viewDidload like below. But it is not working for me.
[[UIBarButtonItem alloc] initWithTitle:@""
style:UIBarButtonItemStylePlain
target:nil action:nil];
or
[self.navigationItem.backBarButtonItem setTitle:@""];
or
self.navigationItem.title=@"";
or
self.navigationController.navigationBar.backItem.title =@"";
Thanks in advance.