SwiftUI crash in AlertBridge.preferencesDidChange(_:)

i am seeing a number of SwiftUI crashes that only occur on iOS 13 with a stack trace that ends with a call to AlertBridge.preferencesDidChange(_:).

Does anyone have any insight into what might be causing this?

Code Block languageCrashed: com.apple.main-thread0  SwiftUI                        0x1f6860ae8 AlertBridge.preferencesDidChange(_:) + 26041  SwiftUI                        0x1f6458474 _UIHostingView.preferencesDidChange() + 4122  SwiftUI                        0x1f65262cc ViewGraph.updateOutputs(at:) + 1803  SwiftUI                        0x1f67c5e10 closure #1 in closure #1 in ViewRendererHost.render(interval:updateDisplayList:) + 8164  SwiftUI                        0x1f67c52b0 closure #1 in ViewRendererHost.render(interval:updateDisplayList:) + 5245  SwiftUI                        0x1f67bc1b8 ViewRendererHost.render(interval:updateDisplayList:) + 3166  SwiftUI                        0x1f68e2748 _UIHostingView.layoutSubviews() + 1607  SwiftUI                        0x1f68e2774 @objc _UIHostingView.layoutSubviews() + 24



Could you show the code, not only the crash report ?
Is AlertBridge a class of yours ?

If that can help, similar problem here:
https://developer.apple.com/forums/thread/662575
AlertBridge is not a class of mine. Strangely, the stack trace reported by Crashlytics does not have any of my code. Here is the complete stack trace. Again, none of the classes seen in the stack trace are mine.

Code Block language0  SwiftUI                        0x1c9bf3ae8 AlertBridge.preferencesDidChange(_:) + 26041  SwiftUI                        0x1c97eb474 _UIHostingView.preferencesDidChange() + 4122  SwiftUI                        0x1c98b92cc ViewGraph.updateOutputs(at:) + 1803  SwiftUI                        0x1c9b58e10 closure #1 in closure #1 in ViewRendererHost.render(interval:updateDisplayList:) + 8164  SwiftUI                        0x1c9b582b0 closure #1 in ViewRendererHost.render(interval:updateDisplayList:) + 5245  SwiftUI                        0x1c9b4f1b8 ViewRendererHost.render(interval:updateDisplayList:) + 3166  SwiftUI                        0x1c9c75748 _UIHostingView.layoutSubviews() + 1607  SwiftUI                        0x1c9c75774 @objc _UIHostingView.layoutSubviews() + 248  UIKitCore                      0x195f657fc -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 21449  QuartzCore                     0x198509494 -[CALayer layoutSublayers] + 28410 QuartzCore                     0x19850f5ec CA::Layer::layout_if_needed(CA::Transaction*) + 46811 QuartzCore                     0x19851a128 CA::Layer::layout_and_display_if_needed(CA::Transaction*) + 14012 QuartzCore                     0x198462b44 CA::Context::commit_transaction(CA::Transaction*, double) + 29613 QuartzCore                     0x19848c4e4 CA::Transaction::commit() + 67614 UIKitCore                      0x195ada9d0 _afterCACommitHandler + 14015 CoreFoundation                 0x19197af2c CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION + 3216 CoreFoundation                 0x191975e20 CFRunLoopDoObservers + 42017 CoreFoundation                 0x19197629c CFRunLoopRun + 96818 CoreFoundation                 0x191975ba8 CFRunLoopRunSpecific + 42419 GraphicsServices               0x19baec344 GSEventRunModal + 16020 UIKitCore                      0x195ab13e4 UIApplicationMain + 193221 Kevo                           0x1029d1418 main + 17 (main.m:17)22 libdyld.dylib                  0x1917fd8f0 start + 4


This crash happens when updating an alert item while the alert is shown. This bug is fixed in iOS 14. The following is a sample code to simulate the crash (Note that you shouldn't dismiss the first alert):

struct MessageInfo: Identifiable {
  let title: String
  let message: String
   
  var id: String {
    "\(title)-\(message)"
  }
}
struct ContentView: View {
  @State private var messageInfo: MessageInfo?
  var body: some View {
    Text("Test Alert Updating")
      .font(.largeTitle)
      .alert(item: $messageInfo) { info in
        let titleText = Text(info.title)
        let messageText = Text(info.message)
        let dismissButton = Alert.Button.default(Text("OK"))
        return Alert(title: titleText,
               message: messageText,
               dismissButton: dismissButton)
      }
      .onAppear {
        DispatchQueue.global(qos: .userInitiated).asyncAfter(deadline: .now().advanced(by: .seconds(1))) {
          messageInfo = .init(title: "Alert 1", message: "Test Alert 1")
        }
         
        DispatchQueue.global(qos: .userInitiated).asyncAfter(deadline: .now().advanced(by: .seconds(2))) {
          messageInfo = .init(title: "Alert 2", message: "Test Alert 2")
        }
      }
  }
}
SwiftUI crash in AlertBridge.preferencesDidChange(_:)
 
 
Q