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 character), when the textView:shouldChangeTextInRange:replacementText method is called, the range variable's length is only 1, when in reality the range should be the number of letters deleted in the word. Does anyone know of any work-arounds to this Apple Bug so I can correctly identify the location and range and the text changed in the UITextView?