NSArray.FromArrayNative<T>(NSArray) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne un tableau C# fortement typé du type paramétré à partir d’un NSArray faiblement typé.
public static T[] FromArrayNative<T> (Foundation.NSArray weakArray) where T : class, ObjCRuntime.INativeObject;
static member FromArrayNative : Foundation.NSArray -> 'T[] (requires 'T : null and 'T :> ObjCRuntime.INativeObject)
Paramètres de type
- T
Le type de paramètre détermine le type de tableau retourné, peut être un NSObject ou d’autres types de données CoreGraphics.
Paramètres
- weakArray
- NSArray
Handle vers un NSArray faiblement typé.
Retours
Tableau C# avec les valeurs.
Remarques
Utilisez cette méthode pour obtenir un ensemble de tableaux NSObject à partir d’un NSArray.
NSArray someArray = ...;
CGImage [] myImages = NSArray.FromArray<CGImage> (someArray);