When debugging in Swift, I'm having problems reading out variables. In this example, I'm trying to print out the value of the info
object coming back from an image picker. (please see link to screenshot on dropbox)
Using println
as you can see from the screenshot line 19 works fine. It prints out the first block of stuff on the output.
After that, I tried doing a po info
as well as highlighting the variable and clicking the eye to print the description. Both of those printed out an empty {}
which doesn't make sense to me, since there is clearly stuff there.
So my question is, is there an lldb command or easy way to view/print out the values of the variables - opposed to an empty {}
I find I can't consistently observe the values of my variables which is frustrating.