11

プログラムで UICollectionView を使用しています。

フレームを次のように設定しました。

UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 100, self.view.frame.size.width, 3000) collectionViewLayout:flowLayout];

UICollectionViewFlowLayoutのセクションインセットは次のように設定されています:

flowLayout.sectionInset = UIEdgeInsetsMake(20.0, 20.0, 100.0, 20.0);

私も1セクションしか持っていません。

コレクション ビューがスクロールするかどうかを確認するために、高さを 3,000 に設定しましたが、スクロールしません。新しいアイテムを挿入したときにコレクション ビューが上下にスクロールしないように見えるので、そのように設定しています。

UICollectionViewからサブクラス化されているUIScrollViewため、スクロール ビューのコンテンツ サイズをリセットし続けることができます。これは正しく機能しますか?

唯一の問題は、各行にいくつのアイテムがあるかなど、すべてのアイテムのサイズがわかっている場合に機能することです。

各アイテムのサイズが異なる場合、各行のサイズはどのように確認できますか? すべての行サイズを追加し、コンテンツ サイズの高さをself.collectionView.

編集

上記の私の提案であるコンテンツ サイズのリセットでさえ、正しく機能しません! コレクションビューを更新するときに、次のことを試しました。

 int numberOfRows = self.dataArray.count / 3;
self.collectionView.contentSize = CGSizeMake(self.view.frame.size.width, (numberOfRows * 200) + 300);

これは非常に醜いですが。これは、すべての画像のサイズが 200x200px で、1 行あたり 3 つの画像に収まると想定しているためです (したがって、3 で除算します)。

さらに、私が持っている+300でも、最後の行は約3/4しか見えず、すべてではありません. さらにスクロールする必要があり、それを見ることができますが、再び 3/4 に戻ります。スクロールして更新するようなもので、ドラッグした場合にのみビューが移動し、離れると元の場所に戻ります。なぜこうなった?Apple の設計UICollectionViewが貧弱だっただけなのだろうか?これは少しばかげています... UITableViews は、コンテンツに応じてスクロールを自動的に調整します。

4

3 に答える 3

13

UICollectionViewに関する他のいくつかの質問に答える際に、私はこのデモプロジェクトを作成しましたが、スクロールは問題ないので、どのような問題が発生しているかわかりません。最後の行を完全に表示するために必要なのは、下部の挿入図のサイズを90に増やすことだけでした。また、performBatchUpdates:completion:にcompletionメソッドを追加して、最後に追加された項目が表示されるように自動的にスクロールします( PerformSelector; withObject:afterDelay:)を使用していくつかのアイテムを追加していることに注意してください。私の画像は48x48で、コレクションビューをコントローラーのビューの境界に設定しました。これがあなたが持っているものと比較できるようにコードです:

@interface ViewController () <UICollectionViewDataSource, UICollectionViewDelegateFlowLayout> {
NSMutableArray *newData;
}
 @property (nonatomic, retain) UICollectionView *collectionView;
 @property (nonatomic, retain) NSMutableArray *results;
 @end

@implementation ViewController

- (void)viewDidLoad {
    self.results = [NSMutableArray array];
    int i = 11;
    while (i<91) {
        UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"New_PICT00%d.jpg",i]];
        [self.results addObject:image];
        i++;
    }

    UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];
    //flowLayout.scrollDirection =  UICollectionViewScrollDirectionHorizontal;

    self.collectionView = [[UICollectionView alloc] initWithFrame:self.view.bounds collectionViewLayout:flowLayout];
    self.collectionView.dataSource = self;
    self.collectionView.delegate = self;
    self.view.backgroundColor = [UIColor blackColor];
    [self.view addSubview:self.collectionView];
    [self.collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"Cell"];
    //[self.collectionView registerClass:[RDCell class] forCellWithReuseIdentifier:@"myCell"];
    [self.collectionView reloadData];

    [self performSelector:@selector(addNewImages:) withObject:nil afterDelay:3];
}

-(void)addNewImages:(id)sender {
    newData = [NSMutableArray array];
    int i = 102;
    while (i<111) {
        UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"New_PICT0%d.jpg",i]];
        [newData addObject:image];
        i++;
    }
    [self addNewCells];
}

-(void)addNewCells {
    NSMutableArray *arrayWithIndexPaths = [NSMutableArray array];
    [self.collectionView performBatchUpdates:^{
        int resultsSize = [self.results count];
        [self.results addObjectsFromArray:newData];
        for (int i = resultsSize; i < resultsSize + newData.count; i++)
            [arrayWithIndexPaths addObject:[NSIndexPath indexPathForRow:i inSection:0]];
        [self.collectionView insertItemsAtIndexPaths:arrayWithIndexPaths];
    }
    completion: ^(BOOL finished){
        [self.collectionView scrollToItemAtIndexPath:arrayWithIndexPaths.lastObject atScrollPosition:UICollectionViewScrollPositionCenteredVertically animated:YES];
    }];
}


- (NSInteger)collectionView:(UICollectionView *)view numberOfItemsInSection:(NSInteger)section {
    return [self.results count];
}

- (NSInteger)numberOfSectionsInCollectionView: (UICollectionView *)collectionView {
    return 1;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];
    //cell.iv.image = [self.results objectAtIndex:indexPath.row];
    cell.backgroundColor = [UIColor colorWithPatternImage:[self.results objectAtIndex:indexPath.row]];
    return cell;
}


- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
    UIImage *image = [self.results objectAtIndex:indexPath.row];
    return CGSizeMake(image.size.width, image.size.height);
}

- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {
    return UIEdgeInsetsMake(10, 10, 90, 10);
}

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
    NSLog(@"Selected Image is Item %d",indexPath.row);
}
于 2012-10-01T19:06:41.603 に答える
9

の高さUICollectionViewを 3000 に設定すると、スクロールの問題が悪化します。の高さが 3000 ピクセルの場合、UICollectionView3000 ピクセル以上のコンテンツが含まれている場合にのみスクロールする必要があります。それが含まれているビューの高さに設定する必要があります (幅と同じ)。

私の知る限り、 を直接設定するべきではなく、代わりに のサブクラスでメソッドcontentSizeをオーバーライドする必要がありますが、一般的に言えば、通常の使用ではコンテンツ サイズを変更する必要はありません。- (CGSize)collectionViewContentSizeUICollectionViewLayout

あなたの問題が何であるかは完全にはわかりません.1画面分以上のアイテムを追加すると、スクロールできなくなりますか?

于 2012-10-04T04:24:21.550 に答える
2

viewWillAppear メソッドで collectionView の要素 (つまり、DataSource) を初期化していたため、同じ問題が発生しました。

最後に a だけを追加する[self.collectionView reloadData];と、問題なく動作します。

たぶんあなたも同じケースです。

于 2012-11-07T09:39:27.007 に答える