0

Core-Data 是否可以从视图中获取数据?(我的意思是 SQLite 视图)

在我的 iOS 应用程序第一次启动时,我将单个 SQLite 文件中的数据加载到我的核心数据存储中,但在这个 sqlite 文件中,我也有一个视图。如何使用 Core-Data 处理这个问题?

我希望能够从此视图中获取数据。

4

1 回答 1

1

A view is really nothing but a select statement. Just sync these separately using simple SQL strings. You can store them as FetchRequestTemplates in your Core Data model.

于 2013-06-04T15:33:53.167 回答