Zigglzworth
Zigglzworth

Reputation: 6803

iOS / iPhone - Xcode debug area not showing object properties

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?

enter image description here

Upvotes: 1

Views: 541

Answers (2)

Jim Ingham
Jim Ingham

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

Lucas Huang
Lucas Huang

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:

  1. Whether the break points you are setting are able to discover your properties. It's all about the scope problem.
  2. To check whether you filter it out accidentally.

Upvotes: 0

Related Questions