다음을 통해 공유


UICollectionView.DequeueReusableSupplementaryView 메서드

정의

오버로드

DequeueReusableSupplementaryView(UICollectionElementKindSection, String, NSIndexPath)

UICollectionReusableView를 반환합니다.

DequeueReusableSupplementaryView(UICollectionElementKindSection, NSString, NSIndexPath)

새로 할당되거나 재사용된 보조 를 반환합니다 UICollectionReusableView.

DequeueReusableSupplementaryView(NSString, NSString, NSIndexPath)

새로 할당되거나 재사용된 보조 를 반환합니다 UICollectionReusableView.

DequeueReusableSupplementaryView(NSString, String, NSIndexPath)

UICollectionReusableView를 반환합니다.

DequeueReusableSupplementaryView(UICollectionElementKindSection, String, NSIndexPath)

UICollectionReusableView를 반환합니다.

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

매개 변수

reuseIdentifier
String
indexPath
NSIndexPath

반환

적용 대상

DequeueReusableSupplementaryView(UICollectionElementKindSection, NSString, NSIndexPath)

새로 할당되거나 재사용된 보조 를 반환합니다 UICollectionReusableView.

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

매개 변수

section
UICollectionElementKindSection

UICollectionElementKindSection 원하는 추가 보기 종류를 지정하는 입니다.

reuseIdentifier
NSString
indexPath
NSIndexPath

NSIndexPath 보조 보기의 위치를 지정하는 입니다.

반환

다시 사용 큐에서 새로 할당되거나 재활용되는 추가 UICollectionReusableView 자료입니다.

설명

애플리케이션 개발자는 이 메서드를 호출하기 전에 또는 RegisterClassForSupplementaryView(Type, UICollectionElementKindSection, String) 를 사용하여 클래스 또는 RegisterNibForSupplementaryView(UINib, UICollectionElementKindSection, String) nib 파일을 등록해야 합니다.

T:UIKIt.UICollectionReusableView가 새로 할당되지 않았지만 재활용 중인 경우 이 메서드는 해당 셀의 PrepareForReuse() 메서드를 호출합니다.

적용 대상

DequeueReusableSupplementaryView(NSString, NSString, NSIndexPath)

새로 할당되거나 재사용된 보조 를 반환합니다 UICollectionReusableView.

[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

매개 변수

kind
NSString

NSString 원하는 추가 보기 종류를 지정하는 입니다(예: "UICollectionElementKindSectionHeader").

identifier
NSString

NSString 보조 보기에 사용해야 하는 형식을 지정하는 입니다.

indexPath
NSIndexPath

NSIndexPath 보조 보기의 위치를 지정하는 입니다.

반환

재사용 큐에서 새로 할당되거나 재활용되는 추가 UICollectionReusableView 자료입니다.

특성

적용 대상

DequeueReusableSupplementaryView(NSString, String, NSIndexPath)

UICollectionReusableView를 반환합니다.

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

매개 변수

kind
NSString
reuseIdentifier
String
indexPath
NSIndexPath

반환

적용 대상