UICollectionViewLayoutAttributes.CreateForCell 方法

定义

重载

CreateForCell(NSIndexPath)

为指定 index 处的单元格创建 UICollectionViewLayoutAttributes。|创建 UICollectionViewLayon

CreateForCell<T>(NSIndexPath)

为指定索引路径处的单元格创建指定类型的布局属性对象。

CreateForCell(NSIndexPath)

为指定 index 处的单元格创建 UICollectionViewLayoutAttributes。|创建 UICollectionViewLayon

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

参数

indexPath
NSIndexPath

描述要为其创建布局属性对象的单元格的索引路径。

返回

一个布局属性对象,该对象表示指定索引路径处的单元格。

属性

注解

此方法将始终返回 UICollectionViewLayoutAttributes。 如果已子类化 UICollectionViewLayoutAttributes,并且需要返回子类的实例,请改用 CreateForCell(NSIndexPath) 。 此方法等效于调用 CreateForCell<UICollectionViewLayoutAttributes>。

适用于

CreateForCell<T>(NSIndexPath)

为指定索引路径处的单元格创建指定类型的布局属性对象。

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

类型参数

T

要返回的布局属性对象的类型。

参数

indexPath
NSIndexPath

描述要为其创建布局属性对象的单元格的索引路径。

返回

T

一个布局属性对象,该对象表示指定索引路径处的单元格。

注解

使用此方法创建 UICollectionViewLayoutAttributes 子类的布局属性对象。

适用于