gpt4 book ai didi

iphone - 如何通过indexPath获取uitableViewCell?

转载 作者:行者123 更新时间:2023-12-03 18:09:10 25 4
gpt4 key购买 nike

如何通过indexPath获取UITableViewCell?像这样:

我使用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)
{

}
}
}
}

最佳答案

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

会给你 uitableviewcell。但我不确定你到底要求什么!因为你有这段代码,但你仍然询问如何获取 uitableviewcell。更多信息将有助于回答您:)

添加:这是一种替代语法,无需强制转换即可实现相同的效果。

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

关于iphone - 如何通过indexPath获取uitableViewCell?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2384435/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com