0

I got a error here when I try to build in the simulator

dyld_sim`dyld_fatal_error:
    0x101799000 <+0>: int3   
->  0x101799001 <+1>: nop    
Tom Xue
  • 470
  • 1
  • 7
  • 18
  • 2
    Duplicate: http://stackoverflow.com/questions/28804654/what-does-error-thread-1exc-bad-instruction-code-exc-i386-invop-subcode-0x0 – Avinash12388 Jun 22 '16 at 21:45
  • You should post the Swift code that actually caused the error, not the compiled code. Also stack traces help too. – Alexander Jun 22 '16 at 23:09

1 Answers1

1

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.

GJZ
  • 2,482
  • 3
  • 21
  • 37