1

如何在调试 iOS 应用程序时在 Xcode 控制台中打印无符号字符?

我试过 print charVar,但它只给了我地址:

(const xmlChar *) $11 = 0x15a03878

其中 xmlChar 定义为typedef unsigned char xmlChar;

谢谢

4

1 回答 1

1

您可以使用 %s 修饰符来查看它。所以它会是NSLog(@"%s", foo)

可以在此处找到有关此内容的出色参考指南链接

于 2012-11-01T09:32:14.133 回答