For me, the solution in swift should be in my subclass of the navigation bar:
self.titleTextAttributes = [NSForegroundColorAttributeName: UIColor.clearColor()]
With clear color, the title disappears. As described in Josema, you can also do this by accessing the navigation bar of your navigation controller:
self.navigationController!.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName: UIColor.clearColor()]
source
share