Introduction Realm is a popular mobile database solution that offers seamless persistence for iOS applications. When working with Realm, you may encounter scenarios where you need to update object properties […]
‘RLMException’, reason: ‘Object has been deleted or invalidated.’ [iOS] [Realm]
Are you fetching datas from server and just converting it to realm object without saving in local database. And at certain action, for example, click favorite button, you want to […]
Swift didSet and willSet on properties in Realm doesn’t work?
Are you trying to use didSet and willSet on properties created on realm based classes? Is it working? I think it won’t. If so, you have come to right place. […]
Accessing private properties using NSPredicate [swift][iOS][Realm]
Let’s suppose you have private property like I mentioned above. Now you might think, `name` property is not accessible right? But you are wrong. It can be accessed using NSPredicate. […]
Realm: LinkingObjects(fromType: Class.self, property: “property”) returns nil [Updated]
Realm is really simple and powerful tool for developers to deal with local database. I highly recommend to use realm. Let’s go directly to the problem guys. Realm provides inverse […]