I've got:
class Statistics: Object {
...
}
func dataForChart() -> Results<Statistics>? {
var result: Results<Statistics>?
do {
let realm = try Realm()
result = realm.objects(Statistics.self)
} catch let error as NSError {
print("Realm error - get all: \(error.localizedDescription)")
}
return result
}
let set = RealmLineDataSet(results: database.dataForChart(), xValueField: "date", yValueField: yField) // this won't compile
Last line gives error: Cannot invoke initializer for type 'RealmLineDataSet' with an argument list of type '(results: Results?, xValueField: String, yValueField: String?)'
I've got:
Last line gives error: Cannot invoke initializer for type 'RealmLineDataSet' with an argument list of type '(results: Results?, xValueField: String, yValueField: String?)'