XCode utility template crashes
following the next exact steps i get a 开发者_JS百科SIGKILL from xcode :
- creating a new Utility Based iOS template for the iphone
- building and launching it with the emulator
- pressing the home button
- double pressing home and closing my application
- relaunching it
i can't seem to understand why it is crashing, does anyone manage to reproduce it and has a clue about what is happening ?
thanks !!
EDIT - apparently this is normal behaviour, found a related post here hope it helps.
I had the same problem for a while. I figured out that this happens when you delete an IBOutlet in your h file, but you don't delete the connection in the .xib file.
Go to your .xib (or storyboard), click on File's Owner, and in the "Connections Inspector" (far right, looks like a circle with a right arrow) tab of the "Utilities Inspector" (far right sidebar in xcode 4.x) make sure you don't have any unused IBOutlets sitting there.
It worked for me...
精彩评论