I have a UITextView which i create in the code: myView = [[UITextView alloc] initWithFrame:CGRectMake(10,5,220,50)];
I have UITextView where user types a text. When the keyboard is shown, I add inputView with UIlabel on it. I want this UIlabel to hold character length of the text. It seems very easy task, but unfort
I\'m 开发者_开发百科looking at code in a UIViewController that conforms to the UITextViewDelegate protocol and has an instance variable called someTextView.
I am new to iPhone. I\'d like to know the key pressed in the keyboard, and instead of the letter of the key I\'d like to insert another letter in UITextView.
I\'ve run into a problem where iOS is giving my UITextViewDelegate incorrect information when the delete key is held on the keyboard.
I use the UI开发者_运维知识库TextViewDelegate and add a InputAccessoryView in textViewDidBeginEditing:
As it is set up now, I have two UITextViews inside of a UIScrollView. The point of this is that the UITextViews themselves don\'t scroll, they just get larger (their contentsize) as more text is added
I\'m new to iPhone programming and Objective-C and am having some trouble with my UITextView. I have a view with a text view as its subview. I created a separate class which I want to be the delgate o
I want to create a ChatView exactly like iPhone\'s texting app (Messages). I\'m doing it programmatically and am trying to move the textView up with the keyboard. I want to do this in a function开发者
Before I was using this method.... //TextView is a UITextView [TextView scrollRangeToVisible:NSMakeRange([TextView length], 0)];