gpt4 book ai didi

iphone - 如何在 iPhone 的表格 View 单元格中设置背景图像

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

我想设置单元格的背景图像。我已经为表格 View 中的单元格设置了背景图像。但我想在 TableView 单元格中设置两个图像作为背景图像。我想设置背景的备用单元格,

喜欢,

  Image1- Cell 1, Cell 3, Cell 5, Etc.,

Imgae-2- Cell 2, Cell 4,Cell 6, Etc.,

请指导我并给我一些示例链接。

谢谢!

最佳答案

您可以为偶数/不均匀行设置两个不同的单元格,如下所示

- (UITableViewCell *)tableView:(UITableView *)tableView 
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifierEvenRows = @"MyCellEven";
static NSString *CellIdentifierUnevenRows = @"MyCellUneven";
UITableViewCell *cell;

if (indexPath.row % 2) {
cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifierUnevenRows];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifierUnevenRows] autorelease];
cell.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"uneven.png"] autorelease];
}
} else {
cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifierEvenRows];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifierEvenRows] autorelease];
cell.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"even.png"] autorelease];
}
}

return cell;
}

(尚未测试)

关于iphone - 如何在 iPhone 的表格 View 单元格中设置背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3603144/

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