One of the most annoying bugs of Xcode is that some objects vanish from the debugging window when you most need them. Is there a way to force Xcode to always show all objects?
thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
When I need to see the content of an object, I simply type “po objectName” in the debug console. If it’s a primitive you want to examine, then use “p variableName”.
Example: “po self”
I know it doesn’t answer your question, but it’s a pretty good work-around.