Condividi tramite


NSArray.FromArrayNative<T>(NSArray) Metodo

Definizione

Restituisce una matrice C# fortemente tipizzata del tipo parametrizzato da un NSArray con tipizzazione debole.

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)

Parametri di tipo

T

Tipo di parametro, determina il tipo di matrice restituito, può essere un oggetto NSObject o altri tipi di dati CoreGraphics.

Parametri

weakArray
NSArray

Handle in un NSArray tipizzato in modo debole.

Restituisce

T[]

Matrice C# con i valori.

Commenti

Usare questo metodo per ottenere un set di matrici NSObject da un NSArray.

NSArray someArray = ...;

CGImage [] myImages = NSArray.FromArray<CGImage> (someArray);

Si applica a