1. 相关的类
主导解析的类:
@interface NSXMLParser : NSObject {
}
- (id)initWithContentsOfURL:(NSURL *)url; // initializes the parser with the specified URL.
- (id)initWithData:(NSData *)data; // create the parser from data- (id)initWithStream:(NSInputStream *)stream NS_AVAILABLE(10_7, 5_0); //create a parser that incrementally pulls data from the specified stream and parses it.// delegate management. The delegate is not retained.
- (id <NSXMLParserDelegate>)delegate;- (void)setDelegate:(id <NSXMLParserDelegate>)delegate;- (void)setShouldProcessNamespaces:(BOOL)shouldProcessNamespaces;- (void)setShouldReportNamespacePrefixes:(BOOL)shouldReportNamespacePrefixes;- (void)setShouldResolveExternalEntities:(BOOL)shouldResolveExternalEntities; - (BOOL)shouldProcessNamespaces;- (BOOL)shouldReportNamespacePrefixes;- (BOOL)shouldResolveExternalEntities;- (BOOL)parse; // called to start the event-driven parse. Returns YES in the event of a successful parse, and NO in case of error.- (void)abortParsing; // called by the delegate to stop the parse. The delegate will get an error message sent to it.- (NSError *)parserError; // can be called after a parse is over to determine parser state.@end
获取解析过程中状态的类:
// Once a parse has begun, the delegate may be interested in certain parser state. These methods will only return meaningful information during parsing, or after an error has occurred.
@interface NSXMLParser (NSXMLParserLocatorAdditions)- (NSString *)publicID;- (NSString *)systemID;- (NSInteger)lineNumber;- (NSInteger)columnNumber;@end
解析的回调接口:
// The parser's delegate is informed of events through the methods in the NSXMLParserDelegateEventAdditions category.
@protocol NSXMLParserDelegate <NSObject>@optional// Document handling methods- (void)parserDidStartDocument:(NSXMLParser *)parser; // sent when the parser begins parsing of the document.- (void)parserDidEndDocument:(NSXMLParser *)parser; // sent when the parser has completed parsing. If this is encountered, the parse was successful.// DTD handling methods for various declarations.- (void)parser:(NSXMLParser *)parser foundNotationDeclarationWithName:(NSString *)name publicID:(NSString *)publicID systemID:(NSString *)systemID;- (void)parser:(NSXMLParser *)parser foundUnparsedEntityDeclarationWithName:(NSString *)name publicID:(NSString *)publicID systemID:(NSString *)systemID notationName:(NSString *)notationName;- (void)parser:(NSXMLParser *)parser foundAttributeDeclarationWithName:(NSString *)attributeName forElement:(NSString *)elementName type:(NSString *)type defaultValue:(NSString *)defaultValue;- (void)parser:(NSXMLParser *)parser foundElementDeclarationWithName:(NSString *)elementName model:(NSString *)model;- (void)parser:(NSXMLParser *)parser foundInternalEntityDeclarationWithName:(NSString *)name value:(NSString *)value;- (void)parser:(NSXMLParser *)parser foundExternalEntityDeclarationWithName:(NSString *)name publicID:(NSString *)publicID systemID:(NSString *)systemID;- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict; // sent when the parser finds an element start tag. // In the case of the cvslog tag, the following is what the delegate receives: // elementName == cvslog, namespaceURI == http://xml.apple.com/cvslog, qualifiedName == cvslog // In the case of the radar tag, the following is what's passed in: // elementName == radar, namespaceURI == http://xml.apple.com/radar, qualifiedName == radar:radar // If namespace processing >isn't< on, the xmlns:radar="http://xml.apple.com/radar" is returned as an attribute pair, the elementName is 'radar:radar' and there is no qualifiedName.- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName; // sent when an end tag is encountered. The various parameters are supplied as above.- (void)parser:(NSXMLParser *)parser didStartMappingPrefix:(NSString *)prefix toURI:(NSString *)namespaceURI; // sent when the parser first sees a namespace attribute. // In the case of the cvslog tag, before the didStartElement:, you'd get one of these with prefix == @"" and namespaceURI == @"http://xml.apple.com/cvslog" (i.e. the default namespace) // In the case of the radar:radar tag, before the didStartElement: you'd get one of these with prefix == @"radar" and namespaceURI == @"http://xml.apple.com/radar"- (void)parser:(NSXMLParser *)parser didEndMappingPrefix:(NSString *)prefix; // sent when the namespace prefix in question goes out of scope.- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string; // This returns the string of the characters encountered thus far. You may not necessarily get the longest character run. The parser reserves the right to hand these to the delegate as potentially many calls in a row to -parser:foundCharacters:- (void)parser:(NSXMLParser *)parser foundIgnorableWhitespace:(NSString *)whitespaceString; // The parser reports ignorable whitespace in the same way as characters it's found.- (void)parser:(NSXMLParser *)parser foundProcessingInstructionWithTarget:(NSString *)target data:(NSString *)data; // The parser reports a processing instruction to you using this method. In the case above, target == @"xml-stylesheet" and data == @"type='text/css' href='cvslog.css'"- (void)parser:(NSXMLParser *)parser foundComment:(NSString *)comment; // A comment (Text in a <!-- --> block) is reported to the delegate as a single string- (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock; // this reports a CDATA block to the delegate as an NSData.- (NSData *)parser:(NSXMLParser *)parser resolveExternalEntityName:(NSString *)name systemID:(NSString *)systemID; // this gives the delegate an opportunity to resolve an external entity itself and reply with the resulting data.- (void)parser:(NSXMLParser *)parser parseErrorOccurred:(NSError *)parseError; // ...and this reports a fatal error to the delegate. The parser will stop parsing.- (void)parser:(NSXMLParser *)parser validationErrorOccurred:(NSError *)validationError; // If validation is on, this will report a fatal validation error to the delegate. The parser will stop parsing.@end