gpt4 book ai didi

iphone - 从 cellForRowAtIndexPath 获取单元格编号

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

我正在制作一个带有表格 View 的 iPhone 应用程序,我试图在表格的每个单元格旁边放置一个不同的图标/图像。

我知道您在 (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 中设置图像,代码如下所示:

UIImage *image = [UIImage imageNamed:@"image.png"];
cell.imageView.image = image;

我想弄清楚的是,如何定位特定细胞,使其具有独特的图像?喜欢:

if (cell.number == 0) {
//Use a specific image
}
else if (cell.number == 1) {
//Use a different image

谢谢!

最佳答案

indexPath 变量包含有关单元格位置的信息。修改您的示例:

if (indexPath.row == 0) {
// Use a specific image.
}

参见 NSIndexPath Class ReferenceNSIndexPath UIKit Additions Reference想要查询更多的信息。同样重要的是要注意每个部分的单元格编号都会重置。

关于iphone - 从 cellForRowAtIndexPath 获取单元格编号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5365863/

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