次のデリゲート メソッドの各パラメーターが保持する値を知りたいです。
- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict
次のデリゲート メソッドの各パラメーターが保持する値を知りたいです。
- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict
Apple ドキュメントに目を通します。これらすべてを簡単に説明します。リンクから参照してください。
didStartElement:namespaceURI:qualifiedName:attributes:
特定の要素の開始タグに遭遇したときに、パーサー オブジェクトによってデリゲートに送信されます。
- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict
パラメーター
パーサー
A parser object.
要素名
A string that is the name of an element (in its start tag).
名前空間URI
If namespace processing is turned on, contains the URI for the current namespace as a string object.
修飾名
If namespace processing is turned on, contains the qualified name for the current namespace as a string object..
属性辞書
A dictionary that contains any attributes associated with the element. Keys are the names of attributes, and values are attribute values.
詳細については、次のリンクを参照してください: http://developer.apple.com/library/ios/#documentation/cocoa/reference/NSXMLParserDelegate_Protocol/Reference/Reference.html