Nathannn
Nathannn

Reputation: 161

How to adjust navigationbar title and edit the back button

changes I want to make

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

Answers (1)

Aaron
Aaron

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

Related Questions