0

Objective-C / Objective-j の構文について簡単な質問があります。

これは dataForItemsAtIndexes メソッドであり、パラメータとして CPIndextSet および CPString を取得します。CPData オブジェクトを返す必要があります。ただし、 (CPCollectionView)aCollectionViewとは何かわかりません。

- (CPData)collectionView:(CPCollectionView)aCollectionView
   dataForItemsAtIndexes:(CPIndexSet)indices
                 forType:(CPString)aType

ありがとう

4

1 に答える 1

1

That identifies the CPCollectionView which your implementing data source corresponds to. This is useful in case your view or window has multiple CPCollectionViews, whose data sources are the same object, so it knows which view to provide which data to.

于 2010-12-20T12:03:46.043 に答える