1

次のデリゲート メソッドの各パラメーターが保持する値を知りたいです。

- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict
4

2 に答える 2

0

Apple ドキュメントに目を通します。これらすべてを簡単に説明します。リンクから参照してください。

于 2012-08-28T07:28:17.807 に答える
0

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

于 2012-08-28T07:30:19.247 に答える