2016-02-28 122 views
2

我想爲自定義單元格「刪除附件」。 enter image description here如何添加刪除附件到自定義單元格?

我overrided canEditRowAtIndexPath方法:這裏

// Override to support conditional editing of the table view. 
    override func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool { 
     // Return false if you do not want the specified item to be editable. 
     return true 
    } 

套裝屬性(但是,在刪除附件??):

enter image description here

但是,這並不爲我工作。

+1

它只在編輯模式下出現。 – tktsubota

+0

如何打開編輯模式?我認爲'''canEditRowAtIndexPath'''這個方法可以做到這一點嗎? – Arti

回答

2

爲了獲得編輯功能,您需要告訴表視圖進行編輯。某處(可能是在爲UIBarButtonItem一個動作):

tableView.setEditing(true, animated: true) 

爲了消除編輯功能,你需要告訴表視圖停止編輯。其他地方(可能在相同的動作):

tableView.setEditing(false, animated: true) 

注意editButtonItem()會自動建立此功能的UIBarButtonItem

相關問題