Hi, I just started experiencing this today myself. The app crashed in the background and then it crashed every time I tried opening the app for hours. Deleting the app, reinstalling from the AppStore, reinstalling from Xcode, nothing worked until I saw this thread and rebooted my device. Now it works fine. My crash reports look just like the others mentioned in this thread.
Post
Replies
Boosts
Views
Activity
Here's how I fixed this iOS16 bug in my code:
if #available(iOS 16.0, *) {
textView = UITextView(usingTextLayoutManager: false) // Must be set to false to use Text Kit 1 to fix scroll view bug
} else {
textView = UITextView()
}
I've been seeing this same issue for the past couple weeks