Swift - Tableviewcell删除图标自定义

时间:2017-07-03 12:05:10

标签: swift uitableview tableviewcell

是否可以将左图标(当删除tableviewcell中的行时)设置为自定义图像?

delete icon

谢谢:)

1 个答案:

答案 0 :(得分:0)

请在以下Your Controller

中尝试以下代码
func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [UITableViewRowAction]? {
    let button1 = UITableViewRowAction(style: .default, title: "Your Title If You Want") { action, indexPath in
        print("button1 pressed!")
    }
    if let image = UIImage(named: "yourImage.png"){
        button1.backgroundColor = UIColor(patternImage: image)
    }
    return [button1]
}
  

希望这肯定会帮助您解决问题