my iphone app crashes unexpectedly and looking at the crash log I can't tell where my code is doing something wrong. All I get in the stack are calls to the framework it's self.
Any help? please!
this is the link to the crash log (rather than copy paste it all here) http://www.megaupload.com/?d=CTWWNUN1
thanks!!!
Looks like you're crashing at mach_msg_trap
, the function that handles Objective-C message passing. This is often a sign that you're doing one of two things:
Look at using Instruments to check your object allocation and leaks, and double-check that you're respecting thread safety properly.