如何通过indexPath获取uitableViewCell?


70

我怎样才能获得UITableViewCell通过indexPath?像这样:

UIActionSheet单击确定时,UIButton我要使用,我想更改单元格文本。

我定义为属性的nowIndex

- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
    if (buttonIndex == 0)
    {
        NSInteger section =  [nowIndex section];
        NSInteger row = [nowIndex row];
        NSDateFormatter *formatter = [[[NSDateFormatter alloc] init] autorelease];
        formatter.dateFormat = @"yyyy-MM-dd";

        if (section == 0)
        {
            if (row == 0)
            {

            }
            else if (row == 1)
            {
                UILabel *content = (UILabel *)[[(UITableView *)[actionSheet ] cellForRowAtIndexPath:nowIndex] viewWithTag:contentTag];
                content.text = [formatter stringFromDate:checkInDate.date];
            }
            else if (row == 2)
            {

            }
        }
    }
}

Answers:


118
[(UITableViewCell *)[(UITableView *)self cellForRowAtIndexPath:nowIndex]

将为您提供uitableviewcell。但是我不确定您到底要什么!因为您有此代码,但仍在询问如何获取uitableviewcell。一些更多的信息将帮助您回答:)

添加:这是一种替代语法,无需进行强制转换即可达到相同的目的。

UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:nowIndex];

1
从技术上讲,无论dataSource您将tableView的属性设置为什么,都希望调用它,但是通常是self
devios1

27

最后,我使用以下代码获取单元格:

UITableViewCell *cell = (UITableViewCell *)[(UITableView *)self.view cellForRowAtIndexPath:nowIndex];

因为班级扩大了 UITableViewController:

@interface SearchHotelViewController : UITableViewController

因此,self是“ SearchHotelViewController”。


1
如果类(..)是UIViewController的子类,则命名该类会造成混淆。
johnyu 2013年

27

这是从索引路径获取自定义单元格的代码

 NSIndexPath *indexPath = [NSIndexPath indexPathForRow:2 inSection:0];
 YourCell *cell = (YourCell *)[tblRegister cellForRowAtIndexPath:indexPath];

对于斯威夫特

let indexpath = NSIndexPath(forRow: 2, inSection: 0)
let currentCell = tblTest.cellForRowAtIndexPath(indexpath) as! CellTest

对于Swift 4(用于collectionview)

let indexpath = NSIndexPath(row: 2, section: 0)
let cell = self.colVw!.cellForItem(at: indexpath as IndexPath) as? ColViewCell

在有两个自定义单元格的情况下,我需要知道在此索引路径上返回哪种类型的单元格。什么是获取类型的最佳方法?
马丁·塞拉诺


7

您可以使用以下代码获取最后一个单元格。

UITableViewCell *cell = [tableView cellForRowAtIndexPath:lastIndexPath];

6

我不太确定您的问题是什么,但是您需要像这样指定参数名称。

-(void) changeCellText:(NSIndexPath *) nowIndex{
    UILabel *content = (UILabel *)[[(UITableViewCell *)[(UITableView *)self cellForRowAtIndexPath:nowIndex] contentView] viewWithTag:contentTag];
    content.text = [formatter stringFromDate:checkInDate.date];
}

大卫,您好,我重写了这个问题,您
能再

4

迅捷3

let indexpath = NSIndexPath(row: 0, section: 0)
let currentCell = tableView.cellForRow(at: indexpath as IndexPath)!

4

迅速

let indexpath = IndexPath(row: 0, section: 0)
if let cell = tableView.cellForRow(at: indexPath) as? <UITableViewCell or CustomCell> {
    cell.backgroundColor = UIColor.red
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.