views:

70

answers:

2

i want to put the textview on navigation bar to set the title by user through the simulator at the run time.

+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
He wants to change the title according to user input, so the `title` property of the `UINavigationItem` will not be enough.
Adam Woś
+2  A: 

Take a look UINavigationItem's titleView property - you can place any view/control there, e.g. a UITextField.

Adam Woś