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.
我有一个 XML 文档,其中包含一个长度超过 90,000 个字符的元素*。
NSXMLNode* node = ...; NSString* val = [node stringValue]; // this is not the full contents of the node!
第二行只给了我80k左右。这显然不是我想要的,所以我很感激一些建议。NSXMLNode 坏了吗?我猜我做错了什么。
提前致谢!
*我知道一个元素中的 90kbytes 不是很好,这是我无法控制的。
[node objectValue]给你什么?
[node objectValue]