web-dev-qa-db-ja.com

UITableView contentSize

アプリのいくつかのテーブルビューに問題があります。

この問題は、テーブルの内容が変更されたときに発生します(したがって、テーブルビューの内容が大きくなります)。

何らかの理由で、UITableViewのcontentSizeは同じままです。つまり、スクロールして新しいコンテンツを表示することはできません。

これは、特定のセルが大きくなったとき([tableView reloadData];の後)、または新しいセルを追加したとき(NSFetchedResultsControllerデリゲートメソッドを使用)に発生します。

TableViewがcontentSizeを再調整するために必要なことはありますか?

コードを表示するように編集しますが、これは単なる定型的なNSFetchedResultsControllerデリゲートコードです...

- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller {
    // The fetch controller is about to start sending change notifications, so prepare the table view for updates.
    [self.tableView beginUpdates];
}


- (void)controller:(NSFetchedResultsController *)controller didChangeObject:(id)anObject atIndexPath:(NSIndexPath *)indexPath forChangeType:(NSFetchedResultsChangeType)type newIndexPath:(NSIndexPath *)newIndexPath {

    UITableView *tableView = self.tableView;

    switch(type) {

        case NSFetchedResultsChangeInsert:
            [tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationFade];
            break;

        case NSFetchedResultsChangeDelete:
            [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
            break;

        case NSFetchedResultsChangeUpdate:
            [self configureCell:(OJFPunchListCell*)[tableView cellForRowAtIndexPath:indexPath] atIndexPath:indexPath];
            break;

        case NSFetchedResultsChangeMove:
            [tableView deleteRowsAtIndexPaths:[NSArray
                                           arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
            [tableView insertRowsAtIndexPaths:[NSArray
                                           arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationFade];
            break;
    }
}


- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id )sectionInfo atIndex:(NSUInteger)sectionIndex forChangeType:(NSFetchedResultsChangeType)type {

    switch(type) {

        case NSFetchedResultsChangeInsert:
            [self.tableView insertSections:[NSIndexSet indexSetWithIndex:sectionIndex] withRowAnimation:UITableViewRowAnimationFade];
            break;

        case NSFetchedResultsChangeDelete:
            [self.tableView deleteSections:[NSIndexSet indexSetWithIndex:sectionIndex] withRowAnimation:UITableViewRowAnimationFade];
            break;
    }
}


- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller {
    // The fetch controller has sent all current change notifications, so tell the table view to process all updates.
    [self.tableView endUpdates];
}

私は以前iOS5でこの種のことをしたことがあり、問題はありませんでした。これは潜在的にiOS6の変更のようですか?

::編集::

これについての愚かなことは、同じアプリに他のUITableViewControllerがいくつかあり、それらはすべて正常に機能していることです。新しいセルの追加、動的なサイズのセルの追加、セルのサイズ変更などを行うことができます。テーブルはすべて、すべてのコンテンツを上下に適切にスクロールします。

この問題は、最近追加したいくつかのテーブルビューで発生しています。

::編集::

OK、デバッグを行うだけです。最初にテーブルビューに移動したとき、contentSize.heightは594です。

次に、新しいアイテムを追加して同じtableviewControllerに戻ると、contentSize.heightは749です。

ただし、スクロールして、tableViewの下部に新しく追加されたセルを表示することはできません。そこにはスクロールしません。古いcontentSizeの高さでバウンスします。

17
Fogmeister

私は同じ問題に遭遇し、この回避策に行き着きました。 [self.tableView endUpdates];の直後にcontentSizeを設定しています

[self.tableView endUpdates];

NSLog(@"%f", self.tableView.contentSize.height);

self.tableView.contentSize = [self.tableView sizeThatFits:CGSizeMake(CGRectGetWidth(self.tableView.bounds), CGFLOAT_MAX)];

NSLog(@"%f", self.tableView.contentSize.height);

[self.tableView setContentInset:UIEdgeInsetsMake(50, 0, -50, 0)];
20
Zoltán

2つの子VCを持つカスタムビューコントローラーを使用しても同じ問題が発生しました。1つはテーブルビュー+フェッチされた結果コントローラーです。

1つのVCからコンテンツを追加してテーブルに戻ると、下部にある新しいコンテンツにスクロールできないという点に到達します。

そのため、テーブルビュー+フェッチされた結果コントローラーでは、どこから来たかに関係なく、フェッチされたオブジェクトの数に基づいてコンテンツサイズを調整します。

最悪のシナリオは、VCを表示するときにコンテンツを追加しなかったが、コストは最小限であるというものです。

//In my tableview + fetched results controller class
-(void)viewDidAppear:(BOOL)animated{
    [super viewDidAppear:animated];


    NSUInteger objCount = self.fetchedResultsController.fetchedObjects.count;
    //My custom cell has a height of 50.0f, yours may not!
    CGFloat tableHeight = objCount * 50.0f;

    NSLog(@"%i objects, total height: %f",objCount,tableHeight);

    [self.tableView setContentSize:CGSizeMake(self.tableView.contentSize.width, tableHeight)];

}
1
shazgoose

'UITableViewAutomaticDimension'の動的tableViewがあります。何かが発生し、リロード後、コンテンツサイズがフレームサイズと等しくなります。手動でコンテンツサイズをテーブル境界サイズに設定すると、すべてが機能します。これがお役に立てば幸いです。

table.beginUpdates()
table.contentSize = CGSize(width: table.bounds.width, height: table.bounds.height)
table.endUpdates()

そしてこれは私がtable.reloadData()を行った後です

0
Djordje Dozet