Hi,
After updating the iOS on their iPhone to 14 a user has identified a bug which crashes the app on textfield selection.
Everything else works as expected including being able to update the textfield (via a spinner selection for example).
If I change the multiline to false and select the textfield there is no crash.
It's only when the editor is set to multiline and the textfield is selected that the app crashes.
private var _keyfeatureInput:TextInput;
_keyfeatureInput.textEditorFactory = function():ITextEditor {
var editor:StageTextTextEditor = new StageTextTextEditor();
editor.textAlign = "left";
editor.fontFamily = FONT_LIGHT;
editor.fontSize = 30;
editor.multiline = true;
editor.softKeyboardType = "default";
editor.returnKeyLabel = ReturnKeyLabel.DONE;
editor.autoCapitalize = AutoCapitalize.WORD;
return editor;
}
Would anyone have any ideas how to go about fixing this?
Thanks,
Mark