Xcode 6.0.1 not displaying memory usage

IosXcodeDebuggingIos8Xcode6

Ios Problem Overview


I've upgraded to Xcode 6.0.1 from 5.1 and when I'm running my app, I can't see memory usage in debug navigator:

enter image description here

I'm getting memory warnings. Yes, I could profile my app instruments without debugging, but seeing direct memory usage simply while debugging helps me a lot. How can I re-enable this functionality? I've restarted Xcode, rebuilt my project etc but I still can't see memory usage. The problem is present both when debugging on device or on the simulator. When I click the memory tab, I also get this weird "zeroed out" dashboard:

enter image description here

Ios Solutions


Solution 1 - Ios

I have resolved disabling Memory Guard diagnostic in the Scheme. From Xcode: Menu Product -> Scheme -> Edit Scheme... -> Diagnostic Tab -> uncheck all Guard options

If still doesn't work, try to disable (if enabled) the "Enable Zombie Object" checkbox.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionCan PoyrazoğluView Question on Stackoverflow
Solution 1 - IosFabioView Answer on Stackoverflow