如何在TableView中显示不同索引的不同图像?

时间:2014-10-15 09:38:55

标签: ios image uitableview swift

我正在开发一个简单的表格应用程序,我希望在每个单元格中显示图像,我已经完成了这一步,并且在所有单元格中显示了一个图像:

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{

    // Create the cell
    var cell : UITableViewCell = self.TableViewData.dequeueReusableCellWithIdentifier("Cell") as UITableViewCell
    cell.textLabel?.text = self.iteams[indexPath.row]
    cell.imageView?.image = UIImage(named: "creme_brelee.jpg")
    return cell
}

它工作正常,但我想为不同的单元格显示更多图像,并且我已经采用了数组:

var thumbils : [String] = ["egg_benedict.jpg", "mushroom_risotto.jpg", "full_breakfast.jpg", "hamburger.jpg", "ham_and_egg_sandwich.jpg", "creme_brelee.jpg", "white_chocolate_donut.jpg", "starbucks_coffee.jpg", "vegetable_curry.jpg", "instant_noodle_with_egg.jpg", "noodle_with_bbq_pork.jpg", "japanese_noodle_with_pork.jpg", "green_tea.jpg", "thai_shrimp_cake.jpg", "angry_birds_cake.jpg", "ham_and_cheese_panini.jpg"]

但现在我不知道如何在tableView中为不同的索引显示不同的图像。

我知道在Objective-C中,我们可以这样做:

cell.imageView.image = [UIImage imageNamed:[thumbnails objectAtIndex:indexPath.row]];

但我不知道如何在swift中做到这一点。

请帮助我。

3 个答案:

答案 0 :(得分:7)

您可以使用以下代码从数组中获取图像:

   cell.imageView?.image = UIImage(named: thumbils[indexPath.row])

答案 1 :(得分:0)

使用下面的代码

 cell.imageView?.image = UIImage(self.iteams(indexPath.row)

答案 2 :(得分:0)

var imagesArray = [UIImage]()  
imagesArray.append(UIImage(named: "mypic.png")!)  
cell.imageView?.image = imagesArray[indexPath.row]  
return cell