UITableView无限滚动

时间:2012-05-01 20:47:56

标签: iphone objective-c ios ipad

如何在UITableView中进行无限滚动?我知道如何使用UIScrollView来实现它,其中苹果在WWDC的一个视频中演示过。我尝试在tableView:cellForRowAtIndexPath:中执行以下操作:

if (indexPath.row == [self.newsFeedData_ count] - 1)
{
    [self.newsFeedData_ addObjectsFromArray:self.newsFeedData_];
    [self.tableView reloadData];
}

但这失败了。还有其他想法吗?

8 个答案:

答案 0 :(得分:55)

如果您需要知道何时触及UITableView的底部,请成为它的委托(因为它是UIScrollView的子类),并使用-scrollViewDidScroll:委托方法来比较表格' s内容高度及其实际滚动位置。

编辑(类似这样):

- (void)scrollViewDidScroll:(UIScrollView *)scrollView_ 
{   
    CGFloat actualPosition = scrollView_.contentOffset.y;
    CGFloat contentHeight = scrollView_.contentSize.height - (someArbitraryNumber);
    if (actualPosition >= contentHeight) {
        [self.newsFeedData_ addObjectsFromArray:self.newsFeedData_];
        [self.tableView reloadData];
     }
}

答案 1 :(得分:18)

您可以支持无限滚动,使用拉动在顶部刷新和/或使用旋转轮在底部连续滚动:

https://github.com/samvermette/SVPullToRefresh

SVPullToRefresh到达底部时,

UITableView处理逻辑。自动显示微调器并触发回调块。您将业务逻辑添加到回调块中。

以下是一个例子:

#import "UIScrollView+SVInfiniteScrolling.h"

// ...

[tableView addInfiniteScrollingWithActionHandler:^{
    // append data to data source, insert new cells at the end of table view
    // call [tableView.infiniteScrollingView stopAnimating] when done
}];

可以使用CocoaPods将项目添加到项目中,也可以直接编译到项目中。

答案 2 :(得分:17)

这是一个非常快速和完整的无限滚动UITableView演示,我把它放在一起......

@interface InfiniteScrollViewController ()

@property (nonatomic) NSMutableArray *tableViewData;
@property (nonatomic) BOOL loadingMoreTableViewData;

@end

@implementation InfiniteScrollViewController

- (void)viewDidLoad {
    self.tableViewData = [[NSMutableArray alloc] init];
    [self addSomeMoreEntriesToTableView];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return self.tableViewData.count + 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    if (indexPath.row < self.tableViewData.count) {
        cell.textLabel.text = [self.tableViewData objectAtIndex:indexPath.row];
    } else {
        cell.textLabel.text = @"Loading more data...";

        // User has scrolled to the bottom of the list of available data so simulate loading some more if we aren't already
        if (!self.loadingMoreTableViewData) {
            self.loadingMoreTableViewData = YES;
            [self performSelector:@selector(addSomeMoreEntriesToTableView) withObject:nil afterDelay:5.0f];
        }
    }

    return cell;
}

- (void)addSomeMoreEntriesToTableView {
    int loopTill = self.tableViewData.count + 20;
    while (self.tableViewData.count < loopTill) {
        [self.tableViewData addObject:[NSString stringWithFormat:@"%i", self.tableViewData.count]];
    };
    self.loadingMoreTableViewData = NO;
    [self.tableView reloadData];
}

@end

答案 3 :(得分:12)

'UITableView'与'scrollViewDidScroll'方法中的'UIScrollView'相同。

因此,它很容易模仿无限滚动。

  1. 将数组加倍,使头部和尾部连接在一起,以模拟圆形表格

  2. 使用我的以下代码,当用户往往到达表的开头或结尾时,用户可以在doubled表的1st部分和doubled表的2nd部分之间切换。

  3. /* To emulate infinite scrolling...
    
    The table data was doubled to join the head and tail: (suppose table had 1,2,3,4)
    1 2 3 4|1 2 3 4 (actual data doubled)
    ---------------
    1 2 3 4 5 6 7 8 (visualising joined table in eight parts)
    
    When the user scrolls backwards to 1/8th of the joined table, user is actually at the 1/4th of actual data, so we scroll instantly (we take user) to the 5/8th of the joined table where the cells are exactly the same.
    
    Similarly, when user scrolls to 6/8th of the table, we will scroll back to 2/8th where the cells are same. (I'm using 6/8th when 7/8th sound more logical because 6/8th is good for small tables.)
    
    In simple words, when user reaches 1/4th of the first half of table, we scroll to 1/4th of the second half, when he reaches 2/4th of the second half of table, we scroll to the 2/4 of first half. This is done simply by subtracting OR adding half the length of the new/joined table.
    */
    
    
    -(void)scrollViewDidScroll:(UIScrollView *)scrollView_ 
    {  
    
        CGFloat currentOffsetX = scrollView_.contentOffset.x;
        CGFloat currentOffSetY = scrollView_.contentOffset.y;
        CGFloat contentHeight = scrollView_.contentSize.height;
    
        if (currentOffSetY < (contentHeight / 8.0)) {
        scrollView_.contentOffset = CGPointMake(currentOffsetX,(currentOffSetY + (contentHeight/2)));
        }
       if (currentOffSetY > ((contentHeight * 6)/ 8.0)) {
           scrollView_.contentOffset = CGPointMake(currentOffsetX,(currentOffSetY - (contentHeight/2)));
        }
    
    }
    

    P.S。 - 我在我的一个名为NT Time Table(Lite)的应用程序中使用了这段代码。如果您想要预览,可以查看应用:https://itunes.apple.com/au/app/nt-time-table-lite/id528213278?mt=8

    如果您的表有时太短,在上述方法的开头,您可以添加一个if逻辑,以便在数据计数例如小于9时退出该方法。

答案 4 :(得分:3)

通常我重写scrollViewDidEndDecelerating并在其中我将我的代码用于请求更多数据。
例如:

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{

    float endScrolling = scrollView.contentOffset.y + scrollView.frame.size.height;

    if (endScrolling >= scrollView.contentSize.height){
        //put here your code

    }
}

最近我在GitHub上传了一个UITableView的子类,它实现了无限滚动。
您可以在这里下载:
https://github.com/alchimya/iOS-LazyTableView

答案 5 :(得分:1)

而不是覆盖我们可以在layoutSubviews中以最佳方式执行此操作。 这是我如何实现它。您可以了解有关实施here

的更多信息
- (void)layoutSubviews{
[super layoutSubviews];

if(self.delegateForViews){

    CGPoint contentOffset = self.contentOffset;

    if([self.delegateForViews noOfViews]>numOfReusableViews){
        NSUInteger centerIndex=visibleViews.count/2;
        NSUInteger noOfViews=[self.delegateForViews noOfViews];
        UIView *centerView=[visibleViews objectAtIndex:centerIndex];

        CGPoint centerViewOrigin=centerView.frame.origin;
        CGSize centerViewSize=centerView.frame.size;
        CGFloat offsetDifference=contentOffset.x-centerViewOrigin.x;
        CGFloat offsetDifferenceAbs=fabs(contentOffset.x-centerViewOrigin.x);

        if(offsetDifferenceAbs>=centerViewSize.width){

            if(offsetDifference<0){
                currentPosition--;
            }else{
                currentPosition++;
            }

            self.contentOffset=centerViewOrigin;

            currentPosition=[self getPosition:currentPosition noOfViews:noOfViews];

            [self.delegateForViews clearView:centerView];
            [self.delegateForViews setupView:centerView forPosition:currentPosition];

            for (int i=centerIndex-1; i>=0; i--) {
                UIView* prevView=[visibleViews objectAtIndex:i];
                [self.delegateForViews clearView:prevView];
                [self.delegateForViews setupView:prevView forPosition:
                        [self getPosition:currentPosition-1 noOfViews:noOfViews]];
            }

            for (int i=centerIndex+1; i<visibleViews.count; i++) {
                UIView* nextView=[visibleViews objectAtIndex:i];
                [self.delegateForViews clearView:nextView];
                [self.delegateForViews setupView:nextView forPosition:
                        [self getPosition:currentPosition+1 noOfViews:noOfViews]];
            }

        }
    }

}

}

答案 6 :(得分:0)

其中一个简单而且提供了我所需要的一切就是这个课程:

https://github.com/jakemarsh/JMStatefulTableViewController

你只需要子类JMStatefulTableViewController,它有3个你需要覆盖的方法:

  • 在init上调用的一个,用于获取初始数据
    • statefulTableViewControllerWillBeginInitialLoading
  • 当用户拉动刷新时
    • statefulTableViewControllerWillBeginLoadingFromPullToRefresh
  • 一个被称为无限卷轴的时候(下一页)
    • statefulTableViewControllerWillBeginLoadingNextPage

这也可以从Cocoapods使用。

答案 7 :(得分:0)

当您在表格视图中的各行之间移动时,

scrollviewDidScroll将调用

func scrollViewDidScroll(_ scrollView: UIScrollView) {
    //check for the visible rows
    let indexpath = self.tableView.indexPathsForVisibleRows?.last
    //check if the visible row last is equal to the total number of counts
    if(indexpath?.last == self.listCount){
      //code for adding data to the tableview and reload the table view.
    }
}

在链接中查找有关indexPathForVisibleRows的更多详细信息 https://developer.apple.com/documentation/uikit/uitableview/1614885-indexpathsforvisiblerows