I'm just starting up with RealmSwift, and I'm trying to store an array of Strings in Realm. It doesn't work, so now I'm using List<String>()
as an alternative. However, how do I convert these Realm Lists back to [String]
again? And if I can't do that, are there any alternatives?
Thanks