gpt4 book ai didi

iphone - 如何通过单击外部按钮的 iOS 中的单元格文本标签获取单元格索引路径

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:09:00 24 4
gpt4 key购买 nike

我在屏幕上有一个 UITableView,单元格中有一些数据(文本标签)。在 UITableView 之外的屏幕上也有一个按钮。我需要访问 UITableView 的特定单元格/cell.IndexPath 以通过在单击按钮时查找单元格文本来更改特定单元格文本的颜色。请帮助..

最佳答案

下面是选择单元格的方法:

UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];

现在,如果您想根据文本标签更改单元格:

if ([cell.textLabel.text isEqualToString:@"Red"]) {
cell.textLabel.textColor = [UIColor redColor];
}

关于iphone - 如何通过单击外部按钮的 iOS 中的单元格文本标签获取单元格索引路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18578187/

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