Reputation: 6803
After a recent upgrade of Xcode (6.1) I am no longer able to see the properties of objects in the debug area. Does anyone know how to return this functionality to Xcode?
Upvotes: 1
Views: 541
Reputation: 27110
Xcode has never shown properties per se in the Variables view. If the property had a backing ivar, and there was debug information for the backing ivar, then that would be shown. But to present the correct property view it would have to call the property accessor for every property of all the disclosed objects, and that's too expensive.
Upvotes: 1
Reputation: 4016
It happened to me before. Turn out, it was just because a tiny mistake. So, I think you need to check two things:
Upvotes: 0