A text view delegate responds to editing-related messages from the text view. You can use the delegate to track changes to the text itself and to the current selection.
0
votes
3answers
79 views
Issue with updating app and UITextView
I have an app that has a UITextView in it. The user presses a button and the action changes the text on the UITextView. The app is functional and in the AppStore right now, it was built using iOS ...
0
votes
3answers
90 views
textViewDidBeginEditing - determining which text box is being edited
I have a page with 5 UITextView objects. I use the textViewDidBeginEditing: method to animate the observationComment text box which works fine. But now I want to do the same for the other 4, but I ...
0
votes
0answers
116 views
textViewDidChange is not call when change UITextView.inputView?
I drag a UITextView and hook up delegate with File's Owner.
The textViewDidChange is called only with default keyboard, but nothing happen when input text from my keyboard.
How to enable delegate of ...
0
votes
2answers
69 views
Changing UITextView with if statement from IBAction
I've been searching a lot but it seems like I just can't figure it out. I'm pretty new to iOS development and I apologize if I am doing things completely wrong.
Here is the situation.
I am trying ...
0
votes
2answers
116 views
Having an ivar 'delegate' in a subclass whose superclass also has same named ivar
I have a subclass defined like this
@protocol UMTextViewDelegate;
@interface UMTexView : UITextView <UITextViewDelegate> {
}
@property (nonatomic, assign) id<UMTextViewDelegate> ...
0
votes
1answer
203 views
dynamically resizing UITextView width and height
My code dynamically adjusts according to the text. It increases height when we press enter and
increases the width unless we press return.
But how do I make it
- (BOOL)textView:(UITextView ...
3
votes
2answers
210 views
UITextView delegate method textViewDidChangeSelection not getting called when returning from background
My ViewController implements UITextView delegate method textViewDidChangeSelection. Everything works just as expected when testing it. However, if the app is put in the background, and then becomes ...
1
vote
2answers
168 views
Backspace many characters in a row in a UITextView
I want to check if a user backspaces a character in a textView if there are any of that same character connecting it for it to delete them all...
For example if the character I'm checking for is "e" ...
0
votes
1answer
164 views
Is it safe to call stringByReplacingCharactersInRange in UITextView's delegate textView:shouldChangeTextInRange:replacementText:?
I implemented a customized textview based on UITextView, trying to listen the text change event. So I implemented the UITextView's delegate:
- (BOOL)textView:(UITextView *)textView ...
2
votes
1answer
215 views
UITextField shouldChangeTextInRange with attributedText causes scroll strange behaviour
I need to capture the typed text, before rendering, in order to apply some attributes to it.
For that i'm using the delegate method shouldChangeTextInRange of the UITextView along with the ...
-1
votes
4answers
165 views
Keyboard covering textview on iPhone
I am newbie for iPhone application. Below is what I have...
When I enter Item name, I get proper screen with Done option. When I click Done, keyboard get hided.
Same happen for Time also.
Now ...
1
vote
2answers
457 views
Detect UITextView scroll location
I am trying to implement a form of a Terms & Conditions page where the "Proceed" button is only enabled once the user has scrolled to the bottom of a UITextView. So far I have set my class as a ...
0
votes
3answers
188 views
UITextView trouble in xcode
So i was reading the description about UITextView's and it says that it automatically hides the keyboard when you press the 'Return' button on the keyboard. But it wasn't working, so I tried creating ...
0
votes
1answer
104 views
UItextView Space on nextline event
i have UITextView with lines. here i added text in UITextView, while i click the next line button(return/enter) ,The text start printing before the margin .but the text should start after the margin, ...
1
vote
1answer
122 views
How to set the Textview move up animation based on keyboard in the custom UIView class
I have Custom UIView class in one textview. Custom View class frame set only some one view controller. My thought is when text view delegate methods textviewdidbeginediting animation of textview based ...
3
votes
0answers
187 views
UITextView autocompletion of custom text
I have UITextView in which as the user types I would like to suggest a few words (like in a popup) as is displayed for misspelled words.
There are custom words that I have in a an array which should ...
1
vote
7answers
773 views
UITextView not becoming first responder
I have a UIView that contains a UITextView. The UIView is initiated inside a UIViewController.
But when I touch the UITextView box, nothing happens. Neither the keyboard appears nor delegate methods ...
0
votes
1answer
595 views
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 is a subview of a UITableCellView and the delegates aren't ...
4
votes
2answers
2k views
UITextView attributedText and syntax highlighting
Background
So, with iOS 6 an UITextView can take an attributedString, which could be useful for Syntax highlighting.
I'm doing some regex patterns in ...
0
votes
4answers
335 views
UITextView: characters count is not right when the backspace is typed in
I want to show the characters number when I type in a UITextView. But I'm confused when I presse the delete/backspace key.
I use:
- (BOOL)textView:(UITextView *)textView ...
1
vote
2answers
211 views
UIScrollViewDelegate methods not working with a UITextView subclass
I have a class MyTextView which inherits from UITextView. I also have a MyViewController which is a subclass of UIViewController. MyViewController implements the UITextViewDelegate protocol and is set ...
0
votes
1answer
217 views
iOS 5 SDK UITextView limitation / bug?
I have a UITextView with a lot of text in it. When the subview containing the UITextView is shown the UITextView only appears after the UITextView has been touched and scrolled.
Is there a limit of ...
0
votes
1answer
280 views
Is it possible to make UITextView inactive (editable = NO) without hiding the keyboard?
I use a UITextView in a subclass of UIViewController which I've named FacebookPostViewController. So the purpose of the text view is to allow the user to review the content of a prepared post, ...
3
votes
2answers
566 views
textViewShouldBeginEditing not called when not editable become to editable
I encountered a problem on the UITextFieldDelegate, anyone can help me will be great appreciate.
There is a UITextView, and I implemented its delegate. Normally all delegate methods called very good. ...
0
votes
1answer
128 views
How to becomeresponder from one UITextView to another UITextView iphone app?
I have two UITextView in my iPhone app. When the user select one UITextView the controller automatically goes to another UITextView. I have trying the following way in my project. But the second ...
1
vote
0answers
182 views
Didn't invoke textViewDidChangeSelection when one click and long press a word on UITextView?
If I double-click one word on a UITextView, textViewDidChangeSelection is invoked. However, one short click and then a long press on a word selects the word, but doesn't invoke the ...
1
vote
1answer
209 views
Custom Delegate fo UITextView
I am subclassing UITextView, and i got it working, but i also want to do some extra work when the UITextView Delegate methods are called. here is what i have so far.
ThanaaTextView.h
#import ...
0
votes
2answers
399 views
Shifting UIView while UITextView is editing
I have a big comment field, which is a UITextView. Since the keyboard appears, and the UITextField is nearly half of the whole view, users can hardly see the field. What I want to do is when the ...
0
votes
1answer
338 views
Limiting UITextField to a certain character range
Can someone help me figure out an easy way to limit the UITextField range, so that the entered number is between 14 and 70, and if the number is greater or less that the one inside the range, the ...
0
votes
2answers
157 views
Want to align the text from the rightside..(UITextALignmentRight)
Created a keyboard using on UITextView's inputView...Want to align the text from the UItextAlignmentRight but it's not working as it is not calling the UITextViewDelegate method when using ...
0
votes
4answers
214 views
UIText view delegate issue
I want to resign keyboard from UItextview. How to implement UItextView delegate method programmatically.
0
votes
1answer
179 views
How to connect UITextView to a home made keyboard?
I have a UITextView field meant to receive input from a keyboard.
But the standard keyboard not being adequate for my app, I built another one with the buttons and characters I need.
I would ...
1
vote
1answer
641 views
UITextView Scroll to selected line
I have a UITextView, and when i type in text, the keyboard will eventually hide the text so i can't see it, so i somehow need to move the text "up" while typing. So far, i got to the delegate method ...
0
votes
1answer
414 views
UITextView delegate method textView:shouldChangeTextInRange:replacementText: gives erroneous replacementText on fast delete
I have a UITextView and I am recording all the text view change events into an array.
When the user is fast deleting (holding down the delete key so words at deleted at a time and not just one ...
0
votes
2answers
655 views
Detect linebreak in UITextView
Is there a way to detect line breaks occurred by the user or when the textview automatically changes line. I am going to change the height of the textview depending on the number of lines.
Any help ...
3
votes
1answer
1k views
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 in iphone sdk
any idea?
thank you in advance..
i refereed this link: iPhone SDK: How to create a ...
0
votes
1answer
327 views
UITextView didChangeSelection not getting called?
I have implemented the UITextViewDelegate in my view Controller, which needs to do something when the text selection changes in textView.
So I used textview:didChangeSelection to listen to call back ...
6
votes
4answers
921 views
Confirm UITextview auto-complete
This seems impossible, but maybe someone else has had the same problem.
Is it possible for me to accept an autocomplete programmatically, or in some way get the suggested word that pops up? My ...
3
votes
2answers
636 views
Suggest # tags while typing (like Twitter) for iPhone UITextView
I'd building an app that uses hashtags, like Twitter or Tweetbot. When you're typing a message, if you type the hashtag symbol, I'd like to suggest tags that match the current one you're typing.
I've ...
2
votes
2answers
896 views
“self.delegate = self” not working on iOS using ARC
I am working on an iOS SDK 4 project with ARC enabled.
My class MyTextView (derived from UITextView with UITextViewDelegate protocol) implements the following static method:
+ ...
0
votes
1answer
127 views
Weird UITextView behavior
I have a UITextView which i create in the code:
myView = [[UITextView alloc] initWithFrame:CGRectMake(10,5,220,50)];
myView.editable = YES;
myView.font = [UIFont fontWithName:@"Helvetica" size:16];
...
1
vote
2answers
507 views
UITextView Problem with scrolling text
I am using UITextView in above screenshot. But problem is when I am trying to scroll text its getting out of screen of UITextView. I have tried by reducing TextView frame but doing that its reducing ...
0
votes
1answer
266 views
UITextView in tableHeaderView can't find delegate
I have a UITableView tableHeaderView defined in a nib file. The tableHeaderView contains a UITextView. The UITextView's delegate is set to the UITableViewController and the UITableViewController ...
1
vote
1answer
460 views
How to update UILabel that is a subview of inputView?
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 ...
1
vote
1answer
604 views
iPhone: Is it safe to call textViewDidChange?
I'm looking at code in a UIViewController that conforms to the UITextViewDelegate protocol and has an instance variable called someTextView.
someTextView.text = @"some text";
[self ...
0
votes
1answer
404 views
How to know the pressed key in the keyboard in iPhone
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.
So for this are there any methods which ...
2
votes
1answer
1k views
UITextViewDelegate behaviour when backspace key is HELD Down
I've run into a problem where iOS is giving my UITextViewDelegate incorrect information when the delete key is held on the keyboard.
When the user HOLDS the delete key on a UITextView on an iPad the ...
7
votes
1answer
2k views
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 appears on second opening.
Has anyone ...
0
votes
1answer
915 views
how to get UItextview touch coordinate position
HI all
i need to get the coordinate position from touching a view. The view i touch is UITextview. THe hierarchy of the view is UIViewController -> UITextview. I think i can use locationInView method ...
5
votes
1answer
868 views
iOS - UITextView + NSUndoManager
I'm trying to integrate the undo/redo features in a UITextView (I'm building a LateX editor) with no luck and to be honest I'm really confused about this argument. I don't understand the steps ...
