gpt4 book ai didi

Swift - Tableviewcell删除图标自定义

转载 作者:行者123 更新时间:2023-11-28 15:29:21 26 4
gpt4 key购买 nike

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

delete icon

谢谢:)

最佳答案

请在您的 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]
}

关于Swift - Tableviewcell删除图标自定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44885153/

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