The predictive-input of iOS8 calls the following delegate method of UITextView
multiple times resulting in the selected word being inserted multiple times into the view.
This code works for typing single letters and copy/paste but not when using the predictive-input bar; why not?
- (BOOL) textView:(UITextView*)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString*)text
{
textView.text = [textView.text stringByReplacingCharactersInRange:range withString:text];
return false;
}
With this code; if I enter an empty UITextView and tap on "The" in the predictive text (autocomplete) view it inserts "The The" into the view by way of making three calls on this method. The parameters passed in for each call are:
- range :
{0,0}
text :@"The"
- range :
{0,0}
text :@"The"
- range :
{3,0}
text :@" "
The space I can understand; but why insert "The" twice?