SCNScene from URL crashes

Hello, we have a piece of code that was working fine until we updated to iOS 11.2 and Xcode 9.2:


if let source = URL(string: "https://myexampledaeurl")

{

do

{

let model = try SCNScene(url: source, options: nil)

}

catch let error

{

print("The error \(error)")

}


}


The .dae model url is working, if we browse with Safari just loads the file.

It is always crashing at: ... try SCNScene(... line resulting in error: Execution was interrupted, reason: EXC_BAD_ACCESS (code=1, address=0x0)


We can't even capture the error on the do,try,catch block. The app just crashes.


Please help.

Replies

We are facing the same issue.


We are able to get a log out of it that says:


[BoringSSL] Function boringssl_session_errorlog: line 2871 [boringssl_session_read] SSL_ERROR_ZERO_RETURN(6): operation failed because the connection was cleanly shut down with a close_notify alert


As of now, we are not able find any solution related to this error.


Any help is appreciated!