I am trying to work my way through ARKit by Tutorials and am up to Chapter 3. I am trying to run the starter project, but it crashes with the console error:
2019-11-08 12:16:48.289985+1000 ARPokerDice[3172:1265809] *** Terminating app due to uncaught exception 'NSInvalidUnarchiveOperationException', reason: 'Could not instantiate class named ARSCNView because no class named ARSCNView was found; the class needs to be defined in source code or linked in from a library (ensure the class is part of the correct target)'
*** First throw call stack:
(0x1bbfbcc30 0x1bbcd70c8 0x1bbeac3ac 0x1bf5ac5c0 0x1bf547428 0x1bfce87b0 0x1bf5ac700 0x1bf5ac934 0x1bf547428 0x1bfce36b0 0x1bfce62e8 0x1bfa1af08 0x1bfa1b9cc 0x1bfa1bc9c 0x1bfa1c384 0x1c008a94c 0x1c008a048 0x1c008afe4 0x1c009c1c8 0x1c004a42c 0x1c0050568 0x1bf7f8710 0x1bfca47e8 0x1bf7f9248 0x1bf7f8c78 0x1bf7f9064 0x1bf7f88e8 0x1bf7fd098 0x1bfcbe214 0x1bfbd1e90 0x1bfcbe1cc 0x1bf7fcdb0 0x1bfcbe0b4 0x1bf7fcc0c 0x1bf668630 0x1bf6670f4 0x1bf668360 0x1c004e91c 0x1bfbf3d7c 0x1c1126014 0x1c114cbd0 0x1c11310f8 0x1c114c864 0x10530b2a8 0x10530e9d0 0x1c1173384 0x1c1173030 0x1c117359c 0x1bbf38260 0x1bbf381b4 0x1bbf37920 0x1bbf327ec 0x1bbf32098 0x1c609c534 0x1c00527ac 0x104b6cef0 0x1bbdb1f30)
libc++abi.dylib: terminating with uncaught exception of type NSException
If I add the line:
let _ = ARWorldTrackingConfiguration()
to the method initARSession(), then it does not crash.
I don’t quite understand why ARSCNView could not be instantiated, as it should be loaded via the storyboard (if I am correct).
I was using Xcode 11.1, and just upgraded to 11.2 and the problem remains.