in the Storyboard (Xcode 6, iOS 8 and swift) i have embedded a TableViewController in a Navigation Controller.
From the object library, i have drag & drop a Bar Button Item as the back button and it show an icon image: when i click that button i show a setting view.
How can i hide that button? In the viewDidLoad() i've tried:
self.navigationItem.hidesBackButton = true;
The code is executed (i've tried with the debugger) but the button is always visible.