-
Notifications
You must be signed in to change notification settings - Fork 417
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On iOs APP using native Apple virtual keyboard with "Preditive Text edition", when taping the suggested word the cursor jumps to the end of text. #3851
Comments
Anyone else observed this behavior ? |
This is fixed and will be included in the next release on Friday, February 28th |
I thinks that this issue is causing that when I receive a sms token in ios side and I select the token from the native keyboard my app is crashing.. please check this issue because this problem was not passing. Exception Type: EXC_CRASH (SIGABRT) Triggered by Thread: 0 there is a way to disable this preditive until you solve the issue? how que can I disable general preditive text Edition |
@shannah I think we need to surround the code with: if ([textView respondsToSelector:selectedRange]) {
...
} |
Fixed #3878 |
On iOs APP when typing on native virtual Apple Keyboard with Preditive Text edition: When we tap the "suggested word" the text cursor jumps to final text.
This behavior occours only in iOs. We reproduced it in iOs 17 version.
The images bellow shows such behavior:
Before taping on suggested word: The text cursor is just after the word "comum ".

Just After taping on suggested word "que": This word is correctly written on current cursor position, but just after the cursor jumps to the end of the text.
Important: The incidence of the problem has a somewhat random behavior: the error does not always occurs, but with some important frequency, when we touch the suggested word, the cursor will jump to the end of the text.
Bellow a simple code of the project:
public class MyApplication {
The text was updated successfully, but these errors were encountered: