Specifies which method in the protocol you want information about. そのプロトコルのどのメソッドについてあなたが情報を望むのか指定します。
Instance Method
インスタンスメソッド
classes(for:
classes(for:argumentIndex:ofReply:)
Returns the current list of allowed classes that can appear within the specified collection object argument to the specified method.
許されるクラスの現在のリストを返します、それは指定されたメソッドに対するこの指定されたコレクションオブジェクト引数内に現れることができるものです。
Availability 有効性
- iOS 11.0+
- iPadOS 11.0+
- macOS 10.8+
- Mac Catalyst 13.0+
- tvOS 11.0+
- watchOS 4.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
func classes(for sel: Selector
,
argumentIndex arg: Int
,
ofReply: Bool
) -> Set
<AnyHashable
>
Parameters パラメータ
sel
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
ifarg
is an index into the parameters of the reply block, orfalse
if it is an index into the parameters of the method itself.true
をもしarg
が応答ブロックのパラメータへのインデックスであるならば、またはfalse
をもしそれがメソッドそれ自体のパラメータへのインデックスであるならば、渡してください。
Discussion 議論
See set
for more explanation.
set
をさらなる説明のために見てください。