Post

Replies

Boosts

Views

Activity

Reply to TextView Getting Crash with long HTML text in iOS16
Hello, I have the same issue after users start to update iOS to 16.2 In our project, UITextView uses using Attributed string to consume HTML content. The UITextView is placed in a UIListView. HTML to crash: <ul><li><p>Lorem ipsum, lorem ipsum</p></li></ul> I have added this code to fix this. if #available(iOS 16.0, *) {             // Hack to fallback to TextKit1             _ = layoutManager         }
Dec ’22