When debugging my program in the XCode debugger, if I hovered my mouse over an array variable, the XCode debugger used to show me how many objects were in the array and I could even examine the objects themselves.
Somewhere along the line this functionality was broken and now it just says there are "-1812597152 objects" in all my arrays and I do not have access to the individual objects.
Does anyone know what went wrong? or better yet, how to fix this?
Edit:
This happens for all arrays, so I don't think its a retaining problem.
I checked out the custom data views with no luck. Unfortunately moving the plist in
~/Library/Application Support/Apple/Developer Tools/CustomDataViews/
had no effect and there were no files in
~/Library/Application Support/Developer/Shared/Xcode/CustomDataViews/
And here is the entry in for arrays in /Developer/Library/Xcode/CustomDataViews/Foundation.plist
<key>NSArray *</key>
<dict>
<key>SummaryString</key>
<string>{(int)[$VAR count]} objects</string>
</dict>
Which looks pretty good to me.