What I want to implement:
class func getSomeObject() -> [SomeObject]? {
let objects = Realm().objects(SomeObject)
return objects.count > 0 ? objects : nil
}
How can I return object as [SomeObject]
instead if Results
?
Weird, the answer is very straight forward. Here is how I do it:
let array = Array(results) // la fin