You can create a new return button without a title. Just put this in the viewDidLoad () of each view controller.
self.navigationItem.backBarButtonItem = UIBarButtonItem(title: "", style: UIBarButtonItemStyle.Plain, target: nil, action: nil)
-
I am going to extend this answer with my experience. Therefore, I was able to remove the title of the back button to display only the back arrow. In the storyboard, you must select a navigation element that displays a title inside the navigation bar of the previous view controller. There is a property called Back Button . Just enter a space and save. It will remove the button title.
The UIBarButtonItemStyle.Bordered update has UIBarButtonItemStyle.Bordered deprecated in iOS 8.0. Use UIBarButtonItemStyle.Plain .
source share