2
我想爲自定義單元格「刪除附件」。 如何添加刪除附件到自定義單元格?
我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
}
套裝屬性(但是,在刪除附件??):
但是,這並不爲我工作。
它只在編輯模式下出現。 – tktsubota
如何打開編輯模式?我認爲'''canEditRowAtIndexPath'''這個方法可以做到這一點嗎? – Arti