I have an xcode project that runs fine under xcode the first time, but if I try to run it a second time it fails in trying to open a directory (as part if the observable view data in the view's environment). It throws an error saying "Interupted system call". I have no idea how to debug something like this, so any help would be welcomed.
Thanks in advance, Rick
It throws an error saying "Interupted system call".
By “It” you mean “My app”, right?
If so, you need to look at where that error is coming from. The Interupted system call
error is EINTR
, which is an expected error code from many low-level routines. I explain this in detail in Understanding `EINTR`.
Once you understand where this is coming from, that’ll inform how you approach fixing it.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"