I have a UINavigationController based app. I can programatically set the title of the UINavigationBar from within my view controller’s viewDidLoad method:
self.navigationItem.title = m_name;
Can I make it so that the title in the navigation bar is editable? IE. I want the user to be able to tap the title in the navigation bar, and to be able to edit it.
Is this possible? And if it is possible, does is it likely to meet Apple’s Human Interface Guidelines? (This post suggests it will, but does not tell me how to implement it – Make UINavigationBar title editable)
Many thanks
Nathan
You are able to set a custom view for your title.
If you were to place a UITextField in your titleView you could give it a clearColor background and set it to have no border. Wala you have a UINavigationBar Title you can tap and edit.