xml 对特殊字符的处理(添加cdata标签)

有时候会在xml里添加包含类似'&'的特殊字符,这样在进行XML解析时会导致错误解析得到不正确的信息,故而有必要针对这些特殊字符进行处理.利用cdata标签,这样xml在解析时就不会错误判断了.

附上源码:

//cdata
+ (id)cdataElementWithName:(NSString *)name stringValue:(NSString *)string
{
    NSString* nodeString = [NSString stringWithFormat:@"<%@>", name, string, name];
    DDXMLElement* cdataNode = [[DDXMLDocument alloc] initWithXMLString:nodeString
                                                               options:DDXMLDocumentXMLKind
                                                                 error:nil].rootElement;
    return [cdataNode copy];
}


你可能感兴趣的:(IOS随笔札记)