Core Data を使用して、プログラムで新しいテーブルを作成できますか? または、必要に応じて SQLite を直接使用する必要があります。
ありがとう
CoreData の観点から見ると、データベース テーブルは、コア データ モデルに関連付けられた永続ストアの可能なタイプの 1 つにすぎないため、新しいテーブルを実際に作成する必要はありません。
ただし、NSEntityDescription クラスを使用してプログラムで新しいコア データ エンティティを作成することはできます。NSEntityDescription クラスのドキュメントでは、次のことがわかります。
Entity descriptions are editable until they are used by an object graph manager. This
allows you to create or modify them dynamically. However, once a description is used
(when the managed object model to which it belongs is associated with a persistent store
coordinator), it must not (indeed cannot) be changed. This is enforced at runtime: any
attempt to mutate a model or any of its sub-objects after the model is associated with a
persistent store coordinator causes an exception to be thrown. If you need to modify a
model that is in use, create a copy, modify the copy, and then discard the objects with
the old model.
実行時に 1 つを変更しようとしたことがないため、既存の SQLite 永続ストアがある場合にこれがどの程度うまく機能するかは正確にはわかりません。しかし、おそらく NSEntityDescription をいじって、あなたがやろうとしていることに近づくかどうかを確認する価値があります。
通常、管理対象オブジェクト モデルは、Xcode のデータ モデル設計ツールを使用してグラフィカルに作成します。(必要に応じて、実行時にプログラムでモデルを構築できます
ただし、次のことができます。
モデルはランタイム環境に取り込まれるとほとんど修正されるため、その場でモデルを変更することはできません。