When I use the 5.0 simulator I don't get any error at all.
When I use the 4.3 simulator I get the following message when I stop the execution of the app in Xcode using the the stop button.
Basically, I am navigating through my program and I launch a view with a uiwebview the following comes up in the console:
Attaching to process 13343. [Switching to process 13343 thread 0x2103]
I continue using the App and I only when I stop the execution do I get the following error message:
Thread one program received: SIGKILL
I think the issue is that another thread was opened when it requires user interaction from the uiwebview. And, then when I send the kill message the first thread receives the sigkill and complains with the error.
If I load the same view without the uiwebview, I don't get the error message at all.
And, when I use the 5.0 simulator I don't get this error message at all when loading the uiwebview.
I have seen similar behaviour with the uitextview.
Is this something I should be worried about? It doesn't seem to be a problem when running on the actual hardware.
Is there a way I can switch back to thread one after I push the other view and am done with the uiwebview?