Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 iOS 代码中,我有以下代码
(char *)xmlTextReaderValue(reader)
我如何才能看到这个 C 函数在 XCode 中返回的内容?我知道如果它是 Objective C 对象,我可以po用来打印该对象。C函数有什么替代方案吗?
po
如果您char *包含可打印的数据(例如终止的格式良好的字符串NULL,您可以简单地使用该p命令,显式转换结果:
char *
NULL
p
p (char *) xmlTextReaderValue(reader)