UIAccessibilityCustomRotor コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
UIAccessibilityCustomRotor() |
既定のコンストラクターは、このクラスの新しいインスタンスを初期化します。 |
UIAccessibilityCustomRotor(NSObjectFlag) |
初期化をスキップし、単に オブジェクトを割り当てるために派生クラスで を呼び出すコンストラクター。 |
UIAccessibilityCustomRotor(IntPtr) |
アンマネージド オブジェクトのマネージド表現を作成するときに使用されるコンストラクター。ランタイムによって呼び出されます。 |
UIAccessibilityCustomRotor(NSAttributedString, UIAccessibilityCustomRotorSearch) |
指定された |
UIAccessibilityCustomRotor(String, UIAccessibilityCustomRotorSearch) |
指定された識別子と検索ハンドラーを持つローターを作成するコンストラクター。 |
UIAccessibilityCustomRotor(UIAccessibilityCustomSystemRotorType, UIAccessibilityCustomRotorSearch) |
および |
UIAccessibilityCustomRotor()
既定のコンストラクターは、このクラスの新しいインスタンスを初期化します。
[Foundation.Export("init")]
public UIAccessibilityCustomRotor ();
- 属性
適用対象
UIAccessibilityCustomRotor(NSObjectFlag)
初期化をスキップし、単に オブジェクトを割り当てるために派生クラスで を呼び出すコンストラクター。
protected UIAccessibilityCustomRotor (Foundation.NSObjectFlag t);
new UIKit.UIAccessibilityCustomRotor : Foundation.NSObjectFlag -> UIKit.UIAccessibilityCustomRotor
パラメーター
未使用の sentinel 値を渡します。NSObjectFlag.Empty を渡します。
注釈
このコンストラクターは、マネージド コードでオブジェクトを完全に構築し、単にランタイムが NSObject を割り当てて初期化する場合に、派生クラスによって呼び出される必要があります。 これは Objective-C が使用する 2 段階の初期化プロセスを実装するために必要です。最初の手順はオブジェクトの割り当てを実行することです。2 番目の手順はオブジェクトを初期化することです。 開発者は、NSObjectFlag.Empty を受け取るコンストラクターを呼び出すときに、オブジェクトのメモリを割り当てて Objective-C と C# オブジェクトをバインドするだけで、NSObject まで至るまでの直接パスを利用します。 オブジェクトの実際の初期化は開発者が行います。
通常、このコンストラクターは、オブジェクトを割り当てるためにバインディング ジェネレーターによって使用されますが、実際の初期化が行われるのを防ぎます。 割り当てが行われたら、コンストラクターは オブジェクトを初期化する必要があります。 バインド ジェネレーターによって生成されたコンストラクターでは、オブジェクトを初期化するために "init" メソッドのいずれかを手動で呼び出します。
NSObjectFlag.Empty パスを使用してチェーンアップする場合、オブジェクトを完全に初期化するのは開発者の責任です。
一般に、開発者のコンストラクターが NSObjectFlag.Empty 基本実装を呼び出す場合は、Objective-C init メソッドを呼び出す必要があります。 そうでない場合、開発者は代わりにクラス内の適切なコンストラクターにチェーンする必要があります。
引数の値は無視され、実行される唯一のコードが構築フェーズであることが確認されるのは、基本的な NSObject の割り当てとランタイム型の登録だけです。 通常、チェーンは次のようになります。
//
// The NSObjectFlag merely allocates the object and registers the
// C# class with the Objective-C runtime if necessary, but no actual
// initXxx method is invoked, that is done later in the constructor
//
// This is taken from Xamarin.iOS's source code:
//
[Export ("initWithFrame:")]
public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
{
// Invoke the init method now.
var initWithFrame = new Selector ("initWithFrame:").Handle;
if (IsDirectBinding)
Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSend_CGRect (this.Handle, initWithFrame, frame);
else
Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_CGRect (this.SuperHandle, initWithFrame, frame);
}
適用対象
UIAccessibilityCustomRotor(IntPtr)
アンマネージド オブジェクトのマネージド表現を作成するときに使用されるコンストラクター。ランタイムによって呼び出されます。
protected internal UIAccessibilityCustomRotor (IntPtr handle);
new UIKit.UIAccessibilityCustomRotor : nativeint -> UIKit.UIAccessibilityCustomRotor
パラメーター
- handle
-
IntPtr
nativeint
アンマネージ オブジェクトへのポインター (ハンドル)。
注釈
このコンストラクターはランタイム インフラストラクチャ (GetNSObject(IntPtr)) によって呼び出され、アンマネージド Objective-C オブジェクトへのポインターの新しいマネージド表現を作成します。 開発者は、このメソッドを直接呼び出さないでください。代わりに GetNSObject メソッドを呼び出す必要があります。これにより、マネージド オブジェクトの 2 つのインスタンスが同じネイティブ オブジェクトを指すのを防ぐことができます。
適用対象
UIAccessibilityCustomRotor(NSAttributedString, UIAccessibilityCustomRotorSearch)
指定された attributedName
と itemSearchBlock
を使用して、新しい UIAccessibilityCustomRotor 作成します。
[Foundation.Export("initWithAttributedName:itemSearchBlock:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public UIAccessibilityCustomRotor (Foundation.NSAttributedString attributedName, UIKit.UIAccessibilityCustomRotorSearch itemSearchBlock);
new UIKit.UIAccessibilityCustomRotor : Foundation.NSAttributedString * UIKit.UIAccessibilityCustomRotorSearch -> UIKit.UIAccessibilityCustomRotor
パラメーター
- attributedName
- NSAttributedString
- itemSearchBlock
- UIAccessibilityCustomRotorSearch
- 属性
適用対象
UIAccessibilityCustomRotor(String, UIAccessibilityCustomRotorSearch)
指定された識別子と検索ハンドラーを持つローターを作成するコンストラクター。
[Foundation.Export("initWithName:itemSearchBlock:")]
public UIAccessibilityCustomRotor (string name, UIKit.UIAccessibilityCustomRotorSearch itemSearchHandler);
new UIKit.UIAccessibilityCustomRotor : string * UIKit.UIAccessibilityCustomRotorSearch -> UIKit.UIAccessibilityCustomRotor
パラメーター
- name
- String
- itemSearchHandler
- UIAccessibilityCustomRotorSearch
- 属性
適用対象
UIAccessibilityCustomRotor(UIAccessibilityCustomSystemRotorType, UIAccessibilityCustomRotorSearch)
および itemSearchBlock
を検索する指定された type
の項目を持つ新しい UIAccessibilityCustomRotor を作成します。
[Foundation.Export("initWithSystemType:itemSearchBlock:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public UIAccessibilityCustomRotor (UIKit.UIAccessibilityCustomSystemRotorType type, UIKit.UIAccessibilityCustomRotorSearch itemSearchBlock);
new UIKit.UIAccessibilityCustomRotor : UIKit.UIAccessibilityCustomSystemRotorType * UIKit.UIAccessibilityCustomRotorSearch -> UIKit.UIAccessibilityCustomRotor
パラメーター
- itemSearchBlock
- UIAccessibilityCustomRotorSearch
- 属性