Reputation: 161
In the image i provided i want to do some minor changes using my viewcontroller. How do i adjust the word haffla so "h" is not blocked out and how do i remove the text "back" from the button!
Upvotes: 0
Views: 59
Reputation: 6704
Here's a way to remove the text from the back button from the navigation bar.
navigationItem.backBarButtonItem = UIBarButtonItem(title: "", style: .Plain, target: nil, action: nil)
Upvotes: 1