gpt4 book ai didi

iphone - 设置适合不同单元格的文本

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

我有一个包含几行的表格,并且所有行的占位符文本都是相同的。如何以编程方式仅更改第一个文本的占位符文本?

谢谢!

最佳答案

您需要运行 if 语句来检查单元格的索引。 0 是第一个索引,因此您需要检查该行是否为 0。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
if (indexPath.row == 0)
cell.textLabel.text = @"First Cell";
else
cell.textLabel.text = @"Not First Cell";
}

关于iphone - 设置适合不同单元格的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13670996/

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