I got a error here when I try to build in the simulator
dyld_sim`dyld_fatal_error:
0x101799000 <+0>: int3
-> 0x101799001 <+1>: nop
I got a error here when I try to build in the simulator
dyld_sim`dyld_fatal_error:
0x101799000 <+0>: int3
-> 0x101799001 <+1>: nop
It means that there there are instructions that lead to a crash, such as force unwrapping something that doesn't exist, and getting a value of nil.
Take a look through your code and see if there are any situations where you force unwrap something that does not necessarily exist.