| Issue 36: | Add _node property to CXMLNode | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Since TouchXML doesn't support CData elements, adding a _node property to CXMLNode allows
access to the underlying object so libxml functions can be called directly. That makes it very easy to
get text or CDATA elements:
- (NSString*)getCDATA: (CXMLNode*)node {
char *cdata = node._node->children->content;
return [NSString stringWithCString:cdata];
}
Nov 10, 2008
#1
macmegas...@gmail.com
Nov 11, 2008
Closed
Status:
Fixed
|