You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ObjectBox is a superfast, light-weight object persistence framework for iOS and macOS. This repository includes a notes example app for iOS that demonstrates ObjectBox's Swift API.
6
+
7
+
-**[Read the guides](https://swift.objectbox.io/)** for detailed explanations
The Example can be found in the `Example/` subfolder, and uses CocoaPods to acquire the framework:
18
+
19
+
cd Example/
20
+
pod install
21
+
22
+
This will generate a `NotesExample.xcworkspace` that you can launch to try out ObjectBox.
23
+
24
+
Entity Files
25
+
------------
26
+
27
+
You do not have to add the runtime info needed for serializing Objects to the database yourself. The project is automatically set up so it will use Sourcery to generate the required EntityInfo extensions on your Entity subclasses.
0 commit comments