I know you can subscribe to the selectedTextRange with KVO to determine when the cursor changes in UITextField so that when I click a different location, the cursor changes and the event is fired.
BUT if I click on the same exact cursor position, it doesn't trigger this event (because I guess selectedTextRange is not actually being set, its remaining the same). How do I detect when they click on the exact same cursor spot or rather when a keystroke is happening but the cursor position does not change. Not a text change but a 'non-cursor change'.
Thank you!