How can I print an unsigned char in the Xcode console while debugging an iOS app ?
I’ve tried print charVar, but it gives me the address only:
(const xmlChar *) $11 = 0x15a03878
where xmlChar is defined as typedef unsigned char xmlChar;
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.
You can use the %s modifier for viewing this. So it would be
NSLog(@"%s", foo)A great reference guide for this stuff can be found here link