Compartilhar via


UICollectionView.DequeueReusableSupplementaryView Método

Definição

Sobrecargas

DequeueReusableSupplementaryView(UICollectionElementKindSection, String, NSIndexPath)

Retorna um UICollectionReusableView.

DequeueReusableSupplementaryView(UICollectionElementKindSection, NSString, NSIndexPath)

Retorna um suplementar UICollectionReusableViewrecém-alocado ou reutilizado.

DequeueReusableSupplementaryView(NSString, NSString, NSIndexPath)

Retorna um suplementar UICollectionReusableViewrecém-alocado ou reutilizado.

DequeueReusableSupplementaryView(NSString, String, NSIndexPath)

Retorna um UICollectionReusableView.

DequeueReusableSupplementaryView(UICollectionElementKindSection, String, NSIndexPath)

public UIKit.UICollectionReusableView DequeueReusableSupplementaryView (UIKit.UICollectionElementKindSection kind, string reuseIdentifier, Foundation.NSIndexPath indexPath);
member this.DequeueReusableSupplementaryView : UIKit.UICollectionElementKindSection * string * Foundation.NSIndexPath -> UIKit.UICollectionReusableView

Parâmetros

reuseIdentifier
String
indexPath
NSIndexPath

Retornos

Aplica-se a

DequeueReusableSupplementaryView(UICollectionElementKindSection, NSString, NSIndexPath)

Retorna um suplementar UICollectionReusableViewrecém-alocado ou reutilizado.

public Foundation.NSObject DequeueReusableSupplementaryView (UIKit.UICollectionElementKindSection section, Foundation.NSString reuseIdentifier, Foundation.NSIndexPath indexPath);
member this.DequeueReusableSupplementaryView : UIKit.UICollectionElementKindSection * Foundation.NSString * Foundation.NSIndexPath -> Foundation.NSObject

Parâmetros

section
UICollectionElementKindSection

Um UICollectionElementKindSection que especifica que tipo de exibição suplementar é desejado.

reuseIdentifier
NSString
indexPath
NSIndexPath

O NSIndexPath que especifica o local da exibição suplementar.

Retornos

Um suplementar UICollectionReusableView que é recém-alocado ou reciclado da fila de reutilização..

Comentários

O desenvolvedor do aplicativo deve ter registrado um arquivo de classe ou nib usando ou RegisterClassForSupplementaryView(Type, UICollectionElementKindSection, String)RegisterNibForSupplementaryView(UINib, UICollectionElementKindSection, String) antes de chamar esse método.

Se o T:UIKIt.UICollectionReusableView não estiver alocado recentemente, mas estiver sendo reciclado, esse método chamará o método dessa PrepareForReuse() célula.

Aplica-se a

DequeueReusableSupplementaryView(NSString, NSString, NSIndexPath)

Retorna um suplementar UICollectionReusableViewrecém-alocado ou reutilizado.

[Foundation.Export("dequeueReusableSupplementaryViewOfKind:withReuseIdentifier:forIndexPath:")]
public virtual UIKit.UICollectionReusableView DequeueReusableSupplementaryView (Foundation.NSString kind, Foundation.NSString identifier, Foundation.NSIndexPath indexPath);
abstract member DequeueReusableSupplementaryView : Foundation.NSString * Foundation.NSString * Foundation.NSIndexPath -> UIKit.UICollectionReusableView
override this.DequeueReusableSupplementaryView : Foundation.NSString * Foundation.NSString * Foundation.NSIndexPath -> UIKit.UICollectionReusableView

Parâmetros

kind
NSString

Um NSString que especifica que tipo de exibição suplementar é desejado (por exemplo, "UICollectionElementKindSectionHeader").

identifier
NSString

Um NSString que especifica qual tipo deve ser usado para a exibição suplementar.

indexPath
NSIndexPath

O NSIndexPath que especifica o local da exibição suplementar.

Retornos

Um suplementar UICollectionReusableView que é recém-alocado ou reciclado da fila de reutilização.

Atributos

Aplica-se a

DequeueReusableSupplementaryView(NSString, String, NSIndexPath)

public UIKit.UICollectionReusableView DequeueReusableSupplementaryView (Foundation.NSString kind, string reuseIdentifier, Foundation.NSIndexPath indexPath);
member this.DequeueReusableSupplementaryView : Foundation.NSString * string * Foundation.NSIndexPath -> UIKit.UICollectionReusableView

Parâmetros

kind
NSString
reuseIdentifier
String
indexPath
NSIndexPath

Retornos

Aplica-se a