Specifies which method in the protocol you want information about. そのプロトコルのどのメソッドについてあなたが情報を望むのか指定します。
Instance Method
インスタンスメソッド
for
forSelector(_:argumentIndex:ofReply:)
Returns the interface previously set for the specified selector and parameter.
以前にこの指定されたセレクタおよびパラメータに対して設定されたインターフェイスを返します。
Availability 有効性
- iOS 11.0+
- iPadOS 11.0+
- macOS 10.8+
- Mac Catalyst 13.0+
- tvOS 11.0+
- watchOS 4.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
func forSelector(_ sel: Selector
,
argumentIndex arg: Int
,
ofReply: Bool
) -> NSXPCInterface
?
Parameters パラメータ
sel
arg
Specifies the position (starting at index 0) of the parameter for which you want to obtain the current interface. 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
をさらなる説明のために見てください。