Freigeben über


UICollectionViewLayoutAttributes.CreateForDecorationView Methode

Definition

Überlädt

CreateForDecorationView(NSString, NSIndexPath)

Erstellt ein Layoutattributeobjekt, das die Dekorationsansicht darstellt.

CreateForDecorationView<T>(NSString, NSIndexPath)

Erstellt ein Layoutattributeobjekt eines bestimmten Typs, der die Dekorationsansicht darstellt.

CreateForDecorationView(NSString, NSIndexPath)

Erstellt ein Layoutattributeobjekt, das die Dekorationsansicht darstellt.

[Foundation.Export("layoutAttributesForDecorationViewOfKind:withIndexPath:")]
public static UIKit.UICollectionViewLayoutAttributes CreateForDecorationView (Foundation.NSString kind, Foundation.NSIndexPath indexPath);
static member CreateForDecorationView : Foundation.NSString * Foundation.NSIndexPath -> UIKit.UICollectionViewLayoutAttributes

Parameter

kind
NSString

Der Artbezeichner für die Dekorationsansicht.

indexPath
NSIndexPath

Ein Indexpfad im Zusammenhang mit der Dekorationsansicht.

Gibt zurück

Ein Layoutattributeobjekt, das die Dekorationsansicht darstellt.

Attribute

Hinweise

Verwenden Sie diese Methode, um ein Layoutattributeobjekt zu erstellen, das eine Dekorationsansicht einer bestimmten Art darstellt. Wenn Sie UICollectionViewLayoutAttributes unterklassiert haben und eine Instanz der Unterklasse zurückgeben müssen, verwenden Sie CreateForDecorationView(NSString, NSIndexPath) stattdessen. Diese Methode entspricht dem Aufrufen von CreateForDecorationView<UICollectionViewLayoutAttributes>.

Gilt für:

CreateForDecorationView<T>(NSString, NSIndexPath)

Erstellt ein Layoutattributeobjekt eines bestimmten Typs, der die Dekorationsansicht darstellt.

public static T CreateForDecorationView<T> (Foundation.NSString kind, Foundation.NSIndexPath indexPath) where T : UIKit.UICollectionViewLayoutAttributes;

Typparameter

T

Der Typ des zurückzugebenden Layoutattributeobjekts.

Parameter

kind
NSString

Der Artbezeichner für die Dekorationsansicht.

indexPath
NSIndexPath

Ein Indexpfad im Zusammenhang mit der Dekorationsansicht.

Gibt zurück

T

Ein Layoutattributeobjekt eines bestimmten Typs, das die Dekorationsansicht darstellt.

Hinweise

Verwenden Sie diese Methode, um ein Layoutattributeobjekt eines bestimmten Typs zu erstellen, das eine Dekorationsansicht einer bestimmten Art darstellt.

Gilt für: