i want to put the textview on navigation bar to set the title by user through the simulator at the run time.
views:
70answers:
2
+1
A:
I think you'll find that there exists a title property you can set already, and you don't need a textview. If you post some code showing the problem, someone might be able to give a more specific answer.
calmh
2010-01-13 11:12:17
He wants to change the title according to user input, so the `title` property of the `UINavigationItem` will not be enough.
Adam Woś
2010-01-13 11:19:31
+2
A:
Take a look UINavigationItem
's titleView
property - you can place any view/control there, e.g. a UITextField
.
Adam Woś
2010-01-13 11:20:09