如何通过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)
{
}
}
}
}
答案 0 :(得分:114)
[(UITableViewCell *)[(UITableView *)self cellForRowAtIndexPath:nowIndex]
会给你uitableviewcell。但我不确定你究竟要求的是什么!因为你有这个代码,但你仍然在问如何获得uitableviewcell。更多信息将有助于回答您:)
ADD:这是一种替代语法,可以在没有强制转换的情况下实现相同的目标。
UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:nowIndex];
答案 1 :(得分:27)
最后,我使用以下代码获取单元格:
UITableViewCell *cell = (UITableViewCell *)[(UITableView *)self.view cellForRowAtIndexPath:nowIndex];
因为课程已延长UITableViewController:
@interface SearchHotelViewController : UITableViewController
因此,self
是“SearchHotelViewController”。
答案 2 :(得分:20)
以下是从索引路径获取自定义单元格的代码
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:2 inSection:0];
YourCell *cell = (YourCell *)[tblRegister cellForRowAtIndexPath:indexPath];
对于Swift
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
答案 3 :(得分:9)
Swift 4
let indexPath = IndexPath(row: 0, section: 0)
let cell = tableView.cellForRow(at: indexPath)
答案 4 :(得分:6)
我不太确定你的问题是什么,但你需要像这样指定参数名称。
-(void) changeCellText:(NSIndexPath *) nowIndex{
UILabel *content = (UILabel *)[[(UITableViewCell *)[(UITableView *)self cellForRowAtIndexPath:nowIndex] contentView] viewWithTag:contentTag];
content.text = [formatter stringFromDate:checkInDate.date];
}
答案 5 :(得分:6)
您可以使用以下代码获取最后一个单元格。
UITableViewCell *cell = [tableView cellForRowAtIndexPath:lastIndexPath];
答案 6 :(得分:4)
Swift 3
let indexpath = NSIndexPath(row: 0, section: 0)
let currentCell = tableView.cellForRow(at: indexpath as IndexPath)!
答案 7 :(得分:4)
<强>夫特强>
let indexpath = IndexPath(row: 0, section: 0)
if let cell = tableView.cellForRow(at: indexPath) as? <UITableViewCell or CustomCell> {
cell.backgroundColor = UIColor.red
}