NSXMLDocument:删除standalone =“no”

时间:2015-07-01 04:38:33

标签: objective-c nsxmldocument

我使用NSXMLDocument生成xml字符串:

NSXMLDocument *doc = [[NSXMLDocument alloc]init];
[doc setVersion:@"1.0"];
[doc setCharacterEncoding:@"UTF-8"];

它的产生:

<?xml version="1.0" encoding="utf-8" standalone="no"?>

我如何删除'standalone =“no”

1 个答案:

答案 0 :(得分:0)

据我了解dokumentation,无法避免生成它。在this SO question中也提到了它。但是,如果您阅读Igor Konoplyanko的已接受答案,则可以尝试使用XSLT将其删除。链接的问题是关于java的,但我认为在objective-c中会有类似的函数。