Realm is a mobile database that runs directly inside phones, tablets or wearables. This repository holds the source code for the iOS & OSX versions of Realm, for both Swift & Objective-C.
- Mobile-first: Realm is the first database built from the ground up to run directly inside phones, tablets and wearables.
- Simple: Data is directly exposed as objects and queryable by code, removing the need for ORM's riddled with performance & maintenance issues. Plus, we've worked hard to keep our API down to just 3 common classes (Object, Arrays and Realms) and 1 utility class (Migrations): most of our users pick it up intuitively, getting simple apps up & running in minutes.
- Modern: Realm supports relationships, generics, vectorization and even Swift (experimental).
- Fast: Realm is faster than even raw SQLite on common operations, while maintaining an extremely rich feature set.
There are two ways to set up Realm in your app: manually or with CocoaPods.
Manually:
- Download the latest release of Realm and extract the zip (or build it from source).
- Drag Realm.framework from our release and into the Frameworks folder in your project in Xcode. Make sure Copy items into destination group’s folder is selected and press Finish.
- Click on the project in the Xcode file explorer. Select your target and go to the Build Phases tab. Under Link Binary with Libraries press + and add libc++.dylib.
- Add the following to your Podfile:
pod "Realm"
. - From the command line, run
pod install
. - Use the
.xcworkspace
file generated by CocoaPods to work on your project!
Once your app is set up with Realm, our documentation will guide you to unleash its full potential.
Documentation for Realm can be found at realm.io/docs/ios. The API reference is located at realm.io/docs/ios/latest/api.
In case you don't want to use the precompiled version, you can build Realm yourself.
Prerequisites:
- Building Realm requires Xcode 5 or above
- Building Realm with Swift support requires Xcode6-Beta5 specifically
- Building Realm documentation requires appledoc
Once you have all the necessary prerequisites, building Realm.framework just takes a single command: sh build.sh ios
. You'll need an internet connection the first time you build Realm to download the core binary.
Run sh build.sh help
to see all the actions you can perform (build ios/osx, generate docs, test, etc.).
Executing the examples under the /examples folder, requires that you have built the Realm.framework.
See CONTRIBUTING.md for more details!
Realm Cocoa is published under the Apache 2.0 license.