Storing an array of strings using Realm's RLMArray
Does anyone know how you can use Realm to store an array of strings? I'm trying to map the following response into Realm correctly: "zoneInfo": { "tariffInfoLines": [ "In this city you pay per minute." ] } We have a zoneInfo object that contains a tariffInfoLines array. This tariffInfoLines array contains strings. In Realm there are two different variable types for storing data. The first is RLMObject which allows your standard NSString, int, long etc. The second type is RLMArray , which is used for arrays (as NSArray is not supported). You have to give the array a type, which must be a class