web-dev-qa-db-ja.com

UICollectionViewの行番号と列番号を指定します

正確に2行と各行に100個のセルを含むUICollectionViewを表示したいと思います。

// 1
- (NSInteger)collectionView:(UICollectionView *)view numberOfItemsInSection:(NSInteger)section {

    return 100;
}
// 2
- (NSInteger)numberOfSectionsInCollectionView: (UICollectionView *)collectionView {
    return 2;
}
// 3
- (UICollectionViewCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    MyCell *cell = [cv dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];

        cell.lbl.text = @"Data";

    return cell;
}

私はこれを得ています:

enter image description here

UICollectionViewの行番号を指定するにはどうすればよいですか? 2x100テーブルを作成したい。

18
onivi

これを試して:

// 1
- (NSInteger)collectionView:(UICollectionView *)view numberOfItemsInSection:(NSInteger)section {

    return 2;
}
// 2
- (NSInteger)numberOfSectionsInCollectionView: (UICollectionView *)collectionView {
    return 100;
}
// 3
- (UICollectionViewCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    MyCell *cell = [cv dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];

        cell.lbl.text = @"Data";

    return cell;
}
16
amone

行ごとに3セルの場合。このコードを追加します。

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
     return CGSizeMake(collectionView.frame.size.width/3.2 , 100);
}
16
Sakshi Singla

任意の方向で互換性のあるコレクションビューでn列を実現するより一般的なアプローチは次のとおりです。

 func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {

   // flow layout have all the important info like spacing, inset of collection view cell, fetch it to find out the attributes specified in xib file
   guard let flowLayout = collectionViewLayout as? UICollectionViewFlowLayout else {
        return CGSize()
    }

    // subtract section left/ right insets mentioned in xib view

    let widthAvailbleForAllItems =  (collectionView.frame.width - flowLayout.sectionInset.left - flowLayout.sectionInset.right)

    // Suppose we have to create nColunmns
    // widthForOneItem achieved by sunbtracting item spacing if any

    let widthForOneItem = widthAvailbleForAllItems / nColumns - flowLayout.minimumInteritemSpacing


    // here height is mentioned in xib file or storyboard
    return CGSize(width: CGFloat(widthForOneItem), height: (flowLayout.itemSize.height))
 }
11
Vivek Bansal

Swiftの場合列ごとに3行(@SakhshiSingla Answerを使用)

override func numberOfSectionsInCollectionView(collectionView: UICollectionView) -> Int {
  return 1
}

override func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return 3
}

func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize
    {
        return CGSize(width: collectionView.frame.size.width/3.2, height: 100)
    }
11
Naveed Ahmad

セクションの数は、セルサイズで許容されると仮定して、各行にいくつのセルがあるかを示します。

セクションは常に新しい行を開始します。

3
themikola