Hey guys, this is more a shot in the dark than anything else, I made a few changes to my UITableViewCell code, and began receiving the following error *after a value was added to the tableview, and after it was told to reload data.*
The sequence is:
1) Modal window opens
2) User clicks a "create" button"
3) The creation, addition, and data reloading occurs
4) The tableview "below" the modal window is re-displayed
Problem 4 is where the error occurs, but since there's no user-accessible code to trace through and find the error, I'm a bit stuck. Here's what I'm getting:
Do you guys know of any way to debug this error, or to figure out which of the arguments being passed to the UITableViewRowData object are problematic? Or what values are being passed back at all? Thanks!
The sequence is:
1) Modal window opens
2) User clicks a "create" button"
3) The creation, addition, and data reloading occurs
4) The tableview "below" the modal window is re-displayed
Problem 4 is where the error occurs, but since there's no user-accessible code to trace through and find the error, I'm a bit stuck. Here's what I'm getting:
Code:
Code Type: X86 (Native)
Parent Process: launchd [112]
Date/Time: 2008-04-09 08:23:39.342 -0400
OS Version: Mac OS X 10.5.2 (9C7010)
Report Version: 6
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x00000000fffffffc
Crashed Thread: 0
Thread 0 Crashed:
0 UIKit 0x30c70a4d -[UITableViewRowData rectForRow:inSection:] + 188
1 UIKit 0x30b5110f -[UITableView(_UITableViewPrivate) _adjustExtraSeparators] + 392
2 UIKit 0x30b47bab -[UITableView layoutSubviews] + 110
3 QuartzCore 0x0018070b -[CALayer layoutSublayers] + 50
4 QuartzCore 0x00180635 CALayerLayoutIfNeeded + 172
Do you guys know of any way to debug this error, or to figure out which of the arguments being passed to the UITableViewRowData object are problematic? Or what values are being passed back at all? Thanks!