Instance Method インスタンスメソッド

parser:didStartMappingPrefix:toURI:

Sent by a parser object to its delegate the first time it encounters a given namespace prefix, which is mapped to a URI. パーサーオブジェクトによってそれの委任先へと送られます、それが、あるURIにマップされるある与えられた名前空間接頭辞と遭遇する最初の時に。

Declaration 宣言

- (void)parser:(NSXMLParser *)parser 
didStartMappingPrefix:(NSString *)prefix 
         toURI:(NSString *)namespaceURI;

Parameters パラメータ

parser

A parser object. パーサーオブジェクト。

prefix

A string that is a namespace prefix. ある文字列、それは名前空間接頭辞です。

namespaceURI

A string that specifies a namespace URI. ある文字列、それは名前空間URIを指定します。

Discussion 議論

The parser object sends this message only when namespace-prefix reporting is turned on through the shouldReportNamespacePrefixes method. パーサーオブジェクトは、このメッセージを、名前空間接頭辞報告がshouldReportNamespacePrefixesメソッドを通じて入りにされる場合にのみ送ります。

See Also 参照

Handling XML XMLを取り扱う