I have a simple question, I suppose, but I cannot find anything.

What's the number at the end of line 6, + 429?

stack trace image

link|improve this question
If you're trying to debug this particular crash I can tell you that you're missing a reuse identifier for your cell in IB. I'm guessing you're using the new dynamic prototypes for UITableView construction. – Mark Adams Oct 22 '11 at 22:15
feedback

1 Answer

EDITED It means that the return address for stack frame 6 is 429 bytes past the start of the -[#### tableView:cellForRowAtindexPath:] function. It might be inside that function, or it might be past the end of the function but not inside any other known function.

link|improve this answer
many thanks. i'm new in debugging xcode, only a little question, i'm learning about a useful new word: symbolication. But with the organizer -> device logs, could i find the exact line of crash?? – DonMizzi Oct 22 '11 at 18:30
3  
thanks for the link, i have read the main content, but there are a lot of information. I tried also to run symbolicatecrash but with the crash show above i have the same result, nothing about the line of crash. I think the crash is simbolicated (right?) but miss the line number. i have only one doubt: i don't have the submitted dSYM but i have the source code. Is possible to ricreate the dSYM and be able to find the line number? Only YES or NO, then i will try to find how. thanks – DonMizzi Oct 23 '11 at 20:37
If you have exactly the same source code, compiler, and SDK that were used to build the executable, you can use them to rebuild with a .dSYM. – rob mayoff Oct 24 '11 at 0:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.