ComboBox::KeyStateChanged with iOS

Trying to determine when a ComboBox is being edited on iOS and ComboBox::KeyStateChanged doesn’t appear to be getting called (which is how I have it working on OSX) The only way I have found to determine text is being changed is to override TextEditor::insertTextAtCaret.

Am I missing something or this the best way to go about this?

Thanks

If you’ve gone as far as grabbing the TextEditor then you don’t need to override any methods, you can just add a TextEditor::Listener to find out when it changes, can’t you?