Post not yet marked as solved
Click to stop watching this thread.
You have stopped watching this post. Click to start watching again.
Post marked as unsolved with 4 replies, 0 views
Replied In
Keyboard cause crash Xcode 13 beta 5, iOS 15
Same problem here. For my case, I found a fix.
In my Info.plist file I had the following code, which caused the problem:
<key>CFBundleDisplayName</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string></string>
</dict>
</array>
I don't know how why this code affects the keyboard when typing, but after removing it everything works. Even if you don't have this in your Info.plist file, you should check the content of this file for similar values.
Hope it helps!