Using swift I have a reproducible crash that occurs when I try to run a function a second time on my watch app. Whenever the crash happens, Xcode gives me the EXC_BREAKPOINT
as a nopl
command in the HKHealthStore
thread. From what I understand nopl
is no operation and literally does not do anything. So I don't know how I should be interpreting a crash during a nopl
. Is it possible Xcode is wrong about the breakpoint? Might it actually be breaking at the start of the next command?
nopl
is in fact possible without having to know anything about my specific situation. I might have not been clear about what I'm looking for but it is not for someone to debug my code off the little info provided but rather to clarify how a crash could occur at anopl
.