I am using a storyboard and developping an iPhone app and using a navigation Controller.
when I implemented it I noticed that it is using the name of the view instead of using the default “back” text , is there a way to force it to use “back” ?
Thanks
When you show up the
UINavigationController, presumably in your application’s delegate, make the application’s delegate also the navigation controller’s delegate. Then watch for view controllers being popped and pushed:AppController.h
AppController.h
Additionally, you can ignore custom view controllers by checking wether
-[NSObject isKindOfClass:]match for the wanted view controllers.