I am trying to use a UILabel to replace the title at the UINavigationBar, the code is as follows:
UINavigationBar *bar = [self.navigationController navigatio
Use self.navigationItem.titleView = nav_title; instead of adding your label as a subview.
self.navigationItem.titleView = nav_title;