以编程方式更改UITableViewCellStyle.Subtitle中的图像

时间:2015-05-26 13:02:24

标签: ios uitableview swift

我必须使用UITableViewCellStyle.Subtitle(因为它与PFTableViewCell完美配合)我可以通过故事板添加默认图像,其中有一个添加图像的选项。这工作正常,但我想通过代码自己更新此图像。我有以下代码:

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath, object: PFObject?) -> PFTableViewCell {

    var cell = tableView.dequeueReusableCellWithIdentifier("Cell") as! SBGestureTableViewCell!

    if cell == nil {
      cell = SBGestureTableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "Cell")
    }

    // update cell image from default image to questionMark 
    cell.imageView?.image = UIImage(named: "Question_Mark@2x")
}

但是,图像没有更新,我仍然看到默认图像。

1 个答案:

答案 0 :(得分:0)

如果你正在使用png图像(因为你的图像名称包含@ 2x),你就缺少.png。

如果您使用的是xcassets,请仔细检查资产中的名称。

此外,检查控制台,如果您没有正确的图像名称,则应将其输出。

我可以从您的代码中获得所有内容。