Ganesh Shetty
Ganesh Shetty

Reputation: 322

Xcode debugger not showing values for variables?

I'm trying to debug my iOS Application, while execution stops at break point, variables at that scope not showing values.

I tried cleaning build, deleting derived-data and also optimization level to none, but nothing helped.

I am using Xcode version 10.1 and Swift 4.2.

Screenshot of debug area

Upvotes: -1

Views: 125

Answers (1)

Florent Morin
Florent Morin

Reputation: 922

You can use, in debugger e myVariable or p myVariable

Upvotes: 0

Related Questions