I am trying to write a small conceptual application that reads a stream of characters when a user types in a UITextView, and when a specific word is entered, it is replaced (like auto-correction).
I looked at using -
(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text;
but still I’m out of luck. can anyone give me a hint.
very grateful!
David
David katz
source
share