gpt4 book ai didi

swift - 如何快速迭代 NSArrayController 内容?

转载 作者:行者123 更新时间:2023-11-30 10:14:34 26 4
gpt4 key购买 nike

我有一个数组 Controller ,它存储实体“学生”的托管对象,我尝试使用以下代码迭代其内容:

for (index, element) in downloadingFilesArrayController.arrangedObjects{
// want to do some useful things on element
}

由于某些原因,它显示编译错误:

'Type AnyObject does not conform to protocol SequenceType'

关于如何修复它有什么想法吗?

最佳答案

你可以这样做:

for element in downloadingFilesArrayController.arrangedObjects as! [AnyObject] {
// want to do some useful things on element
}

关于swift - 如何快速迭代 NSArrayController 内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30965208/

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