I am trying to place textFields on iPhone screen dynamically but I am not getting an idea how to start it.
I have to place a textField where ever the user taps. when a user tap on screen a text field or textView should be places there and user can write a comment over there.
Is it possible?
Yes, it is indeed possible to add
UITextField‘s to a screen dynamically.A
UITextFieldis just another view (albeit one that inherits fromUIControland thenUIView). After you create aUITextViewprogramatically, you can add it viaaddSubviewto the view that is on screen.