共用方式為


UICollectionViewLayoutAttributes.CreateForDecorationView 方法

定義

多載

CreateForDecorationView(NSString, NSIndexPath)

建立代表裝飾檢視的配置屬性物件。

CreateForDecorationView<T>(NSString, NSIndexPath)

建立代表裝飾檢視之特定類型的版面配置屬性物件。

CreateForDecorationView(NSString, NSIndexPath)

建立代表裝飾檢視的配置屬性物件。

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

參數

kind
NSString

裝飾檢視的種類識別碼。

indexPath
NSIndexPath

與裝飾檢視相關的索引路徑。

傳回

代表裝飾檢視的版面配置屬性物件。

屬性

備註

使用這個方法來建立代表特定種類裝飾檢視的配置屬性物件。 如果您已將 UICollectionViewLayoutAttributes 子類別化,而且需要傳回子類別的實例,請改用 CreateForDecorationView(NSString, NSIndexPath) 。 這個方法相當於呼叫 CreateForDecorationView < UICollectionViewLayoutAttributes > 。

適用於

CreateForDecorationView<T>(NSString, NSIndexPath)

建立代表裝飾檢視之特定類型的版面配置屬性物件。

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

類型參數

T

要傳回的配置屬性物件型別。

參數

kind
NSString

裝飾檢視的種類識別碼。

indexPath
NSIndexPath

與裝飾檢視相關的索引路徑。

傳回

T

代表裝飾檢視之特定類型的版面配置屬性物件。

備註

使用這個方法可建立代表特定類型裝飾檢視之特定類型的版面配置屬性物件。

適用於