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

parser:foundNotationDeclarationWithName:publicID:systemID:

Sent by a parser object to its delegate when it encounters a notation declaration. パーサーオブジェクトによってそれの委任先へと送られます、それがある表記法宣言と遭遇する時に。

Declaration 宣言

- (void)parser:(NSXMLParser *)parser 
foundNotationDeclarationWithName:(NSString *)name 
      publicID:(NSString *)publicID 
      systemID:(NSString *)systemID;

Parameters パラメータ

parser

An NSXMLParser object parsing XML. XMLを構文解析しているNSXMLParserオブジェクト。

name

A string that is the name of the notation. 表記法の名前である文字列。

publicID

A string specifying the public ID associated with the notation name. 表記法nameと結びつけられたパブリックIDを指定している文字列。

systemID

A string specifying the system ID associated with the notation name. 表記法nameと結びつけられたシステムIDを指定している文字列。

See Also 参照

Handling the DTD DTDを取り扱う