Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><strong>Edit:</strong> As @Ben mentions, first check whether the array variable is out of scope. I would also add that it's <em>possible</em> that the object has been reclaimed (either by -dealloc or GC) so check to make sure it's retained if needed.</p> <p>If this problem occurs all the time for all arrays, you may have unintentionally changed the <a href="http://developer.apple.com/documentation/DeveloperTools/Conceptual/XcodeDebugging/600-Viewing_Variables_and_Memory/variables_and_memory.html#//apple_ref/doc/uid/TP40007057-CH9-SW24" rel="nofollow noreferrer">data formatter</a> summary string in the Xcode debugger. When you change a data formatter, it overrides the default values. For example, the NSArray formatter is in this file:</p> <p><code>/Developer/Library/Xcode/CustomDataViews/Foundation.plist</code></p> <p>You can <a href="https://stackoverflow.com/questions/1019172/">create your own data formatters</a> which can be stored in plist files or bundles in this directory:</p> <p><code>~/Library/Application Support/Developer/Shared/Xcode/CustomDataViews/</code></p> <p>Dynamically-specified custom data formatters (those that are typed directly into the summary fields of the Xcode debugger) are stored in this directory:</p> <p><code>~/Library/Application Support/Apple/Developer Tools/CustomDataViews/</code></p> <p>If a <strong><code>CustomDataViews.plist</code></strong> file exists in that directory, I suggest moving it out of the way to see if your problem goes away. If it does, and you don't need any of the custom formatters it defines, (you can examine it with Property List Editor or any text editor) it's probably safe to trash it.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload