i want to implement Code by which i can start to insert text at any position of cursor in UITextView in iphone sdk
any idea? thank you in advance..
i refereed th
The simplest way (but it won't replace selected text) is to use the insertText: method:
[textView insertText:@"some text you want to insert"];
UITextView conforms to UITextInput which itself conforms to UIKeyInput.
UITextView
UITextInput
UIKeyInput