PickerView的NSFetchedResultsController

时间:2015-11-09 20:14:41

标签: ios swift core-data

在我的UIViewControllerNSFetchedResultsController TableView。现在我想为UIPickerView添加新内容以委派添加/编辑/删除事件并更改UIPickerView中的项目。我怎样才能做到这一点?我找不到NSFetchedResultsControllerUIPickerView

的任何教程

1 个答案:

答案 0 :(得分:2)

datasource的{​​{1}}方法中使用获取的结果控制器方法时,只需使用常识。

E.g。 UIPickerView
适用于fetchedResultsController.fetchedObjects.countpickerView(_:numberOfRowsInComponent:)
通过
实际对象连续显示 fetchedResultsController.objectAtIndexPath(indexPath:)

我想对于几个组件,您需要多个获取的结果控制器。请注意,据我记忆,根据HIG,viewForRow(_:forComponent:)中的最大项目数不应超过20个。