I’m making an app the has ‘hotkeys’ in it and when you tap the hotkey it should insert a character at the location you are typing at.
I’m using a UITextView with editing on.

What I want do do is insert the text right after the blue cursor.
Is this possible?
You want to use the
insertText:method ofUITextView, which is declared in its implementation of theUIKeyInputprotocol (which is a super-protocol ofUITextInput, whichUITextViewimplements.)