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

parser(_:foundUnparsedEntityDeclarationWithName:publicID:systemID:notationName:)

Sent by a parser object to its delegate when it encounters an unparsed entity declaration. パーサーオブジェクトによってそれの委任先へと送られます、それがある未構文解析エンティティ宣言と遭遇する時に。

Declaration 宣言

optional func parser(_ parser: XMLParser, 
foundUnparsedEntityDeclarationWithName name: String, 
            publicID: String?, 
            systemID: String?, 
        notationName: String?)

Parameters パラメータ

parser

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

name

A string that is the name of the unparsed entity in the declaration. ある文字列、それは宣言の中の未構文解析エンティティの名前です。

publicID

A string specifying the public ID associated with the entity name. エンティティnameと結びつけられたパブリックIDを指定している文字列。

systemID

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

notationName

A string specifying a notation of the declaration of entity name. エンティティnameの宣言の表記法を指定している文字列。

See Also 参照

Handling the DTD DTDを取り扱う

Related Documentation 関連文書