如何使用数组设置单元格内容?

时间:2014-11-26 22:53:24

标签: ios arrays uitableview

我有一个字符串数组,我将用它来检索我的单元格的图像。 当我运行代码时,图像不会放在正确的单元格中。如何让它们以正确的顺序显示?

myArray = @[@"string1", @"string2", @"string3", nil]; //for example

[cell setImageUsingString:[myArray objectAtIndex:indexPath.row]];

1 个答案:

答案 0 :(得分:0)

创建自定义单元格类,向其添加UIImageView,然后使用此代码

UITableViewCell *cell = [myTableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
    cell.myImageView.image = [UIImage imageNamed:[imagesArray objectAtIndex:(int)indexPath.row]];