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

classes(for:argumentIndex:ofReply:)

Returns the current list of allowed classes that can appear within the specified collection object argument to the specified method. 許されるクラスの現在のリストを返します、それは指定されたメソッドに対するこの指定されたコレクションオブジェクト引数内に現れることができるものです。

Declaration 宣言

func classes(for sel: Selector, 
argumentIndex arg: Int, 
     ofReply: Bool) -> Set<AnyHashable>

Parameters パラメータ

sel

Specifies which method in the protocol you want information about. そのプロトコルのどのメソッドについてあなたが情報を望むのか指定します。

arg

Specifies the position (starting at index 0) of the parameter for which you want to obtain the current set of allowed classes. This may be either the position of a parameter in the method itself or the position in its reply block. それに対してあなたが現在の許可されるクラスの集合を入手したいパラメータの位置(インデックス0で始まる)を指定します。これは、メソッドそれ自体におけるあるパラメータの位置またはそれの応答ブロックにおける位置のどちらでもありえます。

ofReply

Pass true if arg is an index into the parameters of the reply block, or false if it is an index into the parameters of the method itself. trueをもしargが応答ブロックのパラメータへのインデックスであるならば、またはfalseをもしそれがメソッドそれ自体のパラメータへのインデックスであるならば、渡してください。

Discussion 議論

See setClasses(_:for:argumentIndex:ofReply:) for more explanation. setClasses(_:for:argumentIndex:ofReply:)をさらなる説明のために見てください。

See Also 参照

Related Documentation 関連文書