我试图在CoreData中使用NSOrderSet来填充我的tableview。我已经能够读取NSOrderedSet的计数,但似乎无法访问构成NSOrderedSet的实体的各个属性。
我将它用于numberOrRows
return (currentStatement.history?.count)!
其中currentStatement表示CoreData中的实体,而History是另一个与Statement Entity具有toMany关系的实体。
我试图访问历史>在CellForRowAt方法中,这样的日期属性。
print("\(currentStatement.history!.object(at: indexPath.row).date) saved date") // Looking for the date data that was saved
答案 0 :(得分:0)
在不知道您遇到的实际问题的情况下,这应该有效:
nopopulate