Xcode 15 Trigger Network.framework memory crash

        let options = NWProtocolTCP.Options()
        options.connectionTimeout = 10

When I run the above code in Xcode15, it crash with EXC_BAD_ACCESS (code=1, address=0x0)

Why did it crash?

same issue here, can't build on any real device, only on simulator. Any workaround?

NWProtocolTCP.Options requires iOS 12+ as a target when compiling in Xcode15 You can increment the minimum deployment version. Or find more details and workarounds here https://github.com/daltoniam/Starscream/issues/983

Xcode 15 Trigger Network.framework memory crash
 
 
Q