gpt4 book ai didi

ios - 计算 Realm 对象列表中的项目数不起作用

转载 作者:行者123 更新时间:2023-11-28 11:59:26 26 4
gpt4 key购买 nike

我正在尝试计算 Realm List(包含在“WorkoutSessionObject”中)中的练习数量,以填充 tableview 的正确行数,但出于某种原因我无法计算出它不让我可以访问该属性吗?

肯定是在检索 WorkoutSessionObject,因为我已尝试打印它。

代码如下:

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

//filter for a specific workout
let predicate = NSPredicate(format: "workoutID = %@", workoutID)
let workoutExercises = realm.objects(WorkoutSessionObject.self).filter(predicate)

//access the 'exercises' list and count it - this isn't working?
let numberOfExercises = workoutExercises.exercises.count
return numberOfExercises
}

我已经以类似的方式访问属性来填充单元格,但显然我在那里使用了 index.row。

我得到的错误是

“结果”类型的值没有成员“练习”

在代码中标记为不工作的行上

研究这里有答案Retrieve the List property count of realm for tableview Swift但这似乎不会返回范围内的计数(它允许在示例中打印,但这在我的代码中不起作用)

即我也试过这个,但它不起作用,因为在范围之外无法访问计数:

   func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
let predicate = NSPredicate(format: "workoutID = %@", workoutID)

//the below works to count but then not accessible outside scope to define number of rows :-(

let workoutExercises = realm.objects(WorkoutSessionObject.self).filter(predicate)
for exercises in workoutExercises {
let exerciseCount = exercises.exercises.count
return exerciseCount
}
//return exercise count for table rows - this doesn't work because not in scope
return exerciseCount
}

有什么想法吗?

最佳答案

问题是 Realm 的 filter保留原始类型(就像 Swift 的内置 filter ),因此 workoutExercises 的类型实际上是Results<WorkoutSessionObject>而不是一个WorkoutSessionObject .

如果您知道 workoutID WorkoutSessionObject 的属性(property)始终是唯一的,您可以简单地调用 firstResults 上实例。

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
let predicate = NSPredicate(format: "workoutID = %@", workoutID)
let workoutExercises = realm.objects(WorkoutSessionObject.self).filter(predicate).first
return workoutExercises?.exercises.count ?? 0
}

如果你知道总会有一个匹配WorkoutSessionObject , 你可以强制展开 workoutExercises .

如果workoutID实际上是一个主键,使用let workoutExercises = realm.object(ofType: WorkoutSessionObject.self, forPrimaryKey: workoutID)更好而不是过滤后的查询。

关于ios - 计算 Realm 对象列表中的项目数不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50359773/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com