我試圖在UITableView
中添加圖像滑動樣式。我試着用表情文字&其做工精細如何在UITableViewRowAction中添加圖像?
func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
let editAction = UITableViewRowAction(style: .normal, title: "") { (rowAction, indexPath) in
print("edit clicked")
}
return [editAction]
}
但我需要的圖像,而不是表情,同時,我試過
editAction.backgroundColor = UIColor.init(patternImage: UIImage(named: "edit")!)
但它越來越重複的圖像,我用圖像多種格式,如20 * 20 ,25 * 25,50 * 50但仍然重複。
如何添加圖片?
[UITableViewRowAction圖像標題]的可能重複(https://stackoverflow.com/questions/29421894/uitableviewrowaction-image-for-title) – Pochi
我相信它可能是一個與您嘗試設置的圖像大小有關的問題。請檢查[this](https://stackoverflow.com/a/37452825/4108415)瞭解更多信息。 –
@傑克嘗試我的解決方案,我希望它解決您的問題。 –