0

按照 Apple Core Data 的指南,我将我的应用程序部署到两个表视图。第一个创建假期组,第二个包括先前创建的组的所有庆祝活动。该技术是绑定之一。表格视图连接到两个阵列控制器。第一个数组控制器管理节日组的实体,第二个管理个别节日的实体,并具有两个属性:名称和日期。现在我需要获取 Array 中包含的日期以在应用程序中使用。最简单的方法是什么?

4

1 回答 1

1

如果我自己不遵循本教程,我实际上无法评论您的实现,但我可以进行一般评论。

也许您想遍历 selectedObjects?

    // When bound to a row, 1 object = 1 row
    for (Entity *entity in arrayController_.selectedObjects) {
        // Use your entity here ie:
        NSLog(@"The entity's date is %@", entity.date);
    }

或者,您可以将值绑定到 TableCellView 的 objectValue

1. Select the TableCellView
2. Add a label
3. Bind the value of the new label to the TableCellView
4. Set the Model Key Path to 'objectValue.date' 

希望这可以帮助

于 2012-04-24T16:25:34.233 回答