gpt4 book ai didi

ios - 将披露指示器添加到表格 View 单元格

转载 作者:行者123 更新时间:2023-11-29 12:06:08 24 4
gpt4 key购买 nike

我相信我这样做是正确的,但它似乎不起作用?单元格的文本指示 if 语句正确且正在运行,但单元格附件没有更改。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"SimpleTableCell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}

if (indexPath.section==0) {
if ([[tableContents objectAtIndex:indexPath.row] isEqual: @"New Time"]) {
cell.tintColor = [UIColor redColor];
cell.textLabel.text = [tableContents objectAtIndex:indexPath.row];
cell.selectionStyle = UITableViewCellSelectionStyleBlue;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
else{
cell.textLabel.text = [tableContents objectAtIndex:indexPath.row];
}
}
else{
cell.textLabel.text = [tableContents objectAtIndex:indexPath.row];

}
return cell;

}

提前感谢您的帮助!

好吧,所以尝试精简代码以查看发生了什么,现在加载 View 时崩溃了,完全困惑,因为我有另一个项目,它工作得很好!

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"UserCells";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}

// Configure the cell...

cell.textLabel.text = @"Hello";
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

return cell;

}

最佳答案

cellForRowAtIndexPath 中设置单元格 tint color 确实有效:

cell.tintColor = [UIColor redColor]; // whatever you want

关于ios - 将披露指示器添加到表格 View 单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34962211/

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