Top "Uitextviewdelegate" questions

A text view delegate responds to editing-related messages from the text view.

Limit number of characters in uitextview

I am giving a text view to tweet some string . I am applying the following method to restrict the number …

ios iphone uitextview uitextviewdelegate
UITextViewDelegate methods not being called (UITextView within UITableViewCell)

I must be doing something fundamentally wrong, my implementation methods for the UITextViewDelegate aren't firing. I have a UITextView that …

iphone ios uitextview uitextviewdelegate
How to create a new line by tapping the return key in UITextView ios

I am newly to iPhone. I have added one UITextView using XIB in my application, now after tapping on done …

ios uitextview uitextviewdelegate
iOS4: Can't Programmatically Scroll to Bottom of UITextView

Before I was using this method.... //TextView is a UITextView [TextView scrollRangeToVisible:NSMakeRange([TextView length], 0)]; ...which would programmatically scroll to …

iphone uiscrollview uitextview ios4 uitextviewdelegate
UITextView doesn't show InputAccessoryView on first click

I use the UITextViewDelegate and add a InputAccessoryView in textViewDidBeginEditing: [textView setInputAccessoryView:doneBar]; The doneBar is not nil and it …

iphone objective-c uitextview uitextviewdelegate
how to insert text at any cursor position in uitextview?

i want to implement Code by which i can start to insert text at any position of cursor in UITextView …

iphone ios uitextview uitextviewdelegate
Is there a delegate call for when the text is changed on a UITextView?

When I set my UITextView programmatically like this: [self.textView setText:@""]; The delegate method textViewDidChange: does not get called. Is …

ios cocoa-touch uitextview uitextviewdelegate