0

我有一個程序在tableView中獲取一些數字。我有一個基於核心數據的程序,它有一個具有一些屬性的實體,並可以將tableview的列綁定到這些屬性。 現在我想擁有每列的總和,但無法找到我如何讀取行中的每個數據來添加它們。 我用如何從Core Data(Xcode)中的managedObjectContext讀取對象

NSString* S= [self.managedObjectContext valueAtIndex:1 inPropertyWithKey:@"aColumnName" ];

但我收到此錯誤:

this class is not key value coding-compliant for the key name.

誰能幫助我嗎?

回答

0

對不起,我發現它。我應該使用@「selection.aColumnName」

相關問題