Top "Realm" questions

The Realm Platform is a data synchronization platform for mobile applications.

How do I set a auto increment key in Realm?

I have a unique msgid for each ChatData object. @interface ChatData : RLMObject @property NSInteger msgid; .... @end But each time I …

ios realm
How to sort using Realm?

I don't know how to sort using Realm. My current code is. data = realm.objects(WorkoutSet) data = data!.sorted("date") …

database swift sorting realm
Correct way to retrieve a single object from Realm database

I am absolutely loving Realm (0.92) in combination with Swift but have a question about reading an object from the database. …

database swift realm
Realm VS Room in Android

I'm building an app and I need to use a database in it. I'm considering using Room as it's new …

android realm android-room
Clear complete Realm Database

I'm playing around with realm (currently 0.85.0) and my application uses the database to store user-specific data such as the contacts …

ios realm
How to set primary key in Swift for Realm model

I'm using Realm in a new iOS Swift project. I'm using Xcode 6.0.1 with iOS SDK 8.0 and Realm 0.85.0 I'm trying to …

ios swift realm
Proper way to clear Realm table/database?

I have a realm object with ~30 fields, after adding and removing several objects it seems that realm takes up quite …

java android realm
Right way of doing Realm Migration Android

We use Realm for our app. Our app has been beta released. Now I want to add a field to …

android realm realm-migration
Realm accessed from incorrect thread - again

I noticed many problems with accessing realm object, and I thought that my solution would be solving that. So I …

ios swift realm
iOS Realm Filter objects in a list of a relationship

I have three objects nested via lists like this: class Canteen: Object { dynamic var name: String? let lines = List<…

ios swift realm