次の方法で共有


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

装飾ビューに関連するインデックス パス。

戻り値

装飾ビューを表す layout 属性オブジェクト。

属性

注釈

特定の種類の装飾ビューを表すレイアウト属性オブジェクトを作成するには、このメソッドを使用します。 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

装飾ビューを表す特定の種類のレイアウト属性オブジェクト。

注釈

特定の種類の装飾ビューを表す特定の種類のレイアウト属性オブジェクトを作成するには、このメソッドを使用します。

適用対象