iOS - 如何获取tableview中最后一项的IndexPath?

时间:2011-04-25 03:38:49

标签: iphone objective-c ios cocoa-touch

我想自动滚动到表格视图的末尾。

[tableView scrollToRowAtIndexPath:lastIndexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES];

鉴于我知道tableview中有多少项使用:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

如何将IndexPath *转换为此tableView中的最后一项?这是必需的,以便我可以将它作为scrollToRowAtIndexPath的参数提供:atScrollPosition:animated

谢谢!

10 个答案:

答案 0 :(得分:31)

获取对最后一节中最后一行的引用...

// First figure out how many sections there are
NSInteger lastSectionIndex = [tableView numberOfSections] - 1;

// Then grab the number of rows in the last section
NSInteger lastRowIndex = [tableView numberOfRowsInSection:lastSectionIndex] - 1;

// Now just construct the index path
NSIndexPath *pathToLastRow = [NSIndexPath indexPathForRow:lastRowIndex inSection:lastSectionIndex];

答案 1 :(得分:30)

您可以像上面这样获取上一部分中最后一行的 indexPath

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:(numberOfRowsInLastSection - 1) inSection:(numberOfSections - 1)];

此处, numberOfSections 是您从numberOfSectionsInTableView:方法返回的值。并且, numberOfRowsInLastSection 是您从表格视图中最后一部分的numberOfRowsInSection:方法返回的值。

可以将其放在子类或类别中以​​简化:

-(NSIndexPath*)indexPathForLastRow
{
    return [NSIndexPath indexPathForRow:[self numberOfRowsInSection:self.numberOfSections - 1] - 1 inSection:self.numberOfSections - 1];
}

答案 2 :(得分:10)

在swift 3中

let lastRowIndex = tableView.numberOfRows(inSection: tableView.numberOfSections-1)

if (indexPath.row == lastRowIndex - 1) {
     print("last row selected")
}

答案 3 :(得分:9)

UICollectionView可能会有人需要相同的, 所以我更新了 Ryan Grimm 的答案:

NSInteger lastSectionIndex = [self.collectionView numberOfSections] - 1;
NSInteger lastItemIndex = [self.collectionView numberOfItemsInSection:lastSectionIndex] - 1;
NSIndexPath *pathToLastItem = [NSIndexPath indexPathForItem:lastItemIndex inSection:lastSectionIndex];

答案 4 :(得分:8)

试试这个:

cellForRowAtIndexPath

if(indexPath.row == myArray.count -1)

{
     myIndexPath = indexpath;
}

myIndexPath应该是NSIndexPath

的对象

答案 5 :(得分:7)

以下是 Swift 4.x 的扩展,考虑到可能没有任何行,因此可以避免超出范围的崩溃。

import UIKit

extension UITableView {
    func lastIndexpath() -> IndexPath {
        let section = max(numberOfSections - 1, 0)
        let row = max(numberOfRows(inSection: section) - 1, 0)

        return IndexPath(row: row, section: section)
    }
}

然后从您的viewcontroller中调用它:

let lastIndexPath = tableView.lastIndexPath()

答案 6 :(得分:3)

此处的大多数答案(包括已接受的答案)都未考虑具有零部分的表视图或具有零行的最终部分的有效情况。

表示这些情况的最佳方式是使用NSNotFound索引,UIKit在scrollToRowAtIndexPath:atScrollPosition:animated:等方法中接受该索引。

  

NSNotFound是一个有效的行索引,用于滚动到零行的部分。

我使用以下方法:

- (NSIndexPath *)bottomIndexPathOfTableView:(UITableView *)tableView
{
    NSInteger finalSection = NSNotFound;
    NSInteger finalRow = NSNotFound;

    NSInteger numberOfSections = [tableView numberOfSections];
    if (numberOfSections)
    {
        finalSection = numberOfSections - 1;
        NSInteger numberOfRows = [tableView numberOfRowsInSection:finalSection];
        if (numberOfRows)
        {
            finalRow = numberOfRows - 1;
        }
    }
    return numberOfSections ? [NSIndexPath indexPathForRow:finalRow inSection:finalSection] : nil;
}

答案 7 :(得分:2)

似乎所有解决方案都没有考虑到最后一部分可能根本没有行。所以这是一个函数,它返回最后一个非空部分的最后一行:

斯威夫特3:

extension UITableViewDataSource {
    func lastIndexPath(_ tableView: UITableView) -> IndexPath? {
        guard let sections = self.numberOfSections?(in: tableView) else { return nil }
        for section in stride(from: sections-1, through: 0, by: -1) {
            let rows = self.tableView(tableView, numberOfRowsInSection: section)
            if rows > 0 {
                return IndexPath(row: rows - 1, section: section)
            }
        }
        return nil
    }
}

示例:

class ViewController: UIViewController {

    //...

    func scrollToLastRow() {
        if let indexPath = lastIndexPath(tableView) {
            tableView.scrollToRow(at: indexPath, at: .bottom, animated: true)
        }
    }
}

extension ViewController: UITableViewDataSource {
    //required data source methods
}

答案 8 :(得分:1)

斯威夫特3回答,超出界限检查。实现为tableview扩展

extension UITableView {

    var lastIndexPath: IndexPath? {

        let lastSectionIndex = numberOfSections - 1
        guard lastSectionIndex >= 0 else { return nil }

        let lastIndexInLastSection = numberOfRows(inSection: lastSectionIndex) - 1
        guard lastIndexInLastSection >= 0 else { return nil }

        return IndexPath(row: lastIndexInLastSection, section: lastSectionIndex)
    }
}

答案 9 :(得分:0)

试试这段代码:

//   get number of section
let indexOfLastSection = self.yourTableView.numberOfSections - 1

// Then get the number of rows in the last section

if indexOfLastSection >= 0{
    let indexOfLastRow = self.yourTableView.numberOfRows(inSection: indexOfLastSection) - 1
    if indexOfLastRow >= 0{
        let pathToLastRow = IndexPath.init(row: indexOfLastRow, section: indexOfLastSection)
    }
}