Partager via


UICollectionViewLayoutAttributes.CreateForCell Méthode

Définition

Surcharges

CreateForCell(NSIndexPath)

Crée un UICollectionViewLayoutAttributes pour la cellule à l’index.| Crée un UICollectionViewLayon

CreateForCell<T>(NSIndexPath)

Crée un objet d’attributs de disposition du type spécifié pour la cellule au niveau du chemin d’index spécifié.

CreateForCell(NSIndexPath)

Crée un UICollectionViewLayoutAttributes pour la cellule à l’index.| Crée un UICollectionViewLayon

[Foundation.Export("layoutAttributesForCellWithIndexPath:")]
public static UIKit.UICollectionViewLayoutAttributes CreateForCell (Foundation.NSIndexPath indexPath);
static member CreateForCell : Foundation.NSIndexPath -> UIKit.UICollectionViewLayoutAttributes

Paramètres

indexPath
NSIndexPath

Chemin d’index décrivant la cellule pour laquelle créer un objet d’attributs de disposition.

Retours

Objet d’attributs de disposition représentant la cellule au niveau du chemin d’index spécifié.

Attributs

Remarques

Cette méthode retourne toujours un UICollectionViewLayoutAttributes. Si vous avez sous-classé UICollectionViewLayoutAttributes et que vous devez retourner une instance de la sous-classe, utilisez CreateForCell(NSIndexPath) à la place. Cette méthode équivaut à appeler CreateForCell<UICollectionViewLayoutAttributes>.

S’applique à

CreateForCell<T>(NSIndexPath)

Crée un objet d’attributs de disposition du type spécifié pour la cellule au niveau du chemin d’index spécifié.

public static T CreateForCell<T> (Foundation.NSIndexPath indexPath) where T : UIKit.UICollectionViewLayoutAttributes;

Paramètres de type

T

Type de l’objet d’attributs de disposition à retourner.

Paramètres

indexPath
NSIndexPath

Chemin d’index décrivant la cellule pour laquelle créer un objet d’attributs de disposition.

Retours

T

Objet d’attributs de disposition représentant la cellule au niveau du chemin d’index spécifié.

Remarques

Utilisez cette méthode pour créer un objet d’attributs de disposition d’une sous-classe UICollectionViewLayoutAttributes.

S’applique à