-1
A
答えて
0
UITableViewDataSourceメソッドを実装するのUITableViewから行を削除するには:
スウィフト
func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
if editingStyle == .delete{
// enter your datasource updation logic hare & delete table cell
tableview.deleteRows(at: [indexPath], with: .fade)
}
}
0
あなたはcanEditRowAtメソッドを書く必要がありますか?
func tableView(_ tableView: UITableView, canEditRowAt indexPath:
IndexPath) -> Bool {
// Return YES if you want the specified item to be editable.
return true
}
、その後、あなたはセルをレイアウトし、どのような実装deleteメソッドに入る方法にいくつかのコードを追加したい場合があります。この機能で削除する実際のコード
func tableView(_ tableView: UITableView, commit editingStyle:
UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
if editingStyle == .delete {
//add code here for delete action
}
}
関連する問題
- 1. UITableViewCellスワイプを削除してバウンスを削除する方法
- 2. UITableViewCell、スワイプなしでスワイプスタイルの削除ボタンを表示
- 3. UITableViewCellはスワイプされても削除ボタンは表示されません
- 4. スワイプ後のUITableViewCellのカスタムボタン
- 5. 削除するスワイプとXLPagerTabStrip
- 6. スワイプで削除する
- 7. UITableViewCellカスタムを削除する
- 8. UITableViewCellコンテンツを削除する
- 9. UITableViewCell右から左へスワイプ
- 10. スワイプで削除すると、TableViewスワイプのヘッダーとフッターのセクションも
- 11. TableViewスワイプの削除に必要なヘルプ
- 12. TableViewのスワイプが削除されない
- 13. Swift - 静的なUITableViewで削除するスワイプ(削除ボタンなし)
- 14. UITableViewCellからのオブジェクトの削除
- 15. iOS 11 UITableViewCell上のviewForHeaderInSectionビュー削除後
- 16. 削除UITableViewCellの原因となるクラッシュ
- 17. スワイプでURLからパラメータを削除
- 18. Android RecyclerView:スワイプでアイテムを削除する
- 19. スワイプでFirebaseオブジェクトを削除する
- 20. クラッシュ時にスワイプして削除する
- 21. Moda Operandi iOSアプリのようにスワイプ/タッチしないでUITableViewCellの削除ボタンを表示するには?
- 22. UITableViewCellからUIButtonを削除する
- 23. UITableViewCell、ボタンフレームを削除しますか?
- 24. UITableViewCell left spaceを削除するには?
- 25. UITableViewCellで削除アクセサリビューを変更する
- 26. プログラムでUITableViewCellをスワイプしますか?
- 27. UITableViewCellで削除するスワイプが白い背景になっている必要があります。
- 28. スワイプを設定してスワイプでUITableviewフレームの高さを削除する方法
- 29. UITableViewCellの任意の場所で左または右にスワイプして、削除ボタンがないセルを削除しますか?
- 30. 特定のUITableViewCellの下にUITableViewCellを追加および削除する
。 – lostInTransit