Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在数据库中的表有 100 个数据。我想在第十和第二十之间找到。我想知道如何使用 MagicalRecord 或 sqlite 语句找到它们。
忘记 Magical Record 并使用原生 Core Data。
fetchRequest.fetchOffset = 10; fetchRequest.fetchLimit = 10;