2017-07-03 99 views
0

是否可以將左圖標(當刪除tableviewcell中的一行時)設置爲自定義圖像?Swift - Tableviewcell刪除圖標自定義

delete icon

謝謝:)

+0

希望此鏈接將幫助你:https://stackoverflow.com/a/32214735/5580393 – Aditya

+0

你想永遠在那裏顯示那個圖標嗎? – Alwin

+0

是的,我只是想有一個自定義圖像... – Marco

回答

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] 
} 

希望這一定會幫助你的問題

+0

thx ...但這是正確的確認刪除按鈕....我試圖改變左邊的圖標... – Marco

+0

你找到了你的答案。如果你找到了,那麼你可以在這裏發佈你的答案,以便其他人可以得到你的問題的幫助。 –

+0

不幸的是我還沒有找到它.... – Marco