gpt4 book ai didi

ios - @lvalue NSMutableArray' 不可转换为 'SequenceType'

转载 作者:可可西里 更新时间:2023-11-01 02:20:04 25 4
gpt4 key购买 nike

我正在尝试在 Swift 中循环访问 NSMutableArray。但是为什么我在这样的简单情况下会收到此错误:

// note : `responseObject:AnyObject!`

var temp = NSMutableArray(array: responseObject as! [AnyObject])

for a:NSDictionary in temp { // @lvalue NSMutableArray' is not convertible to 'SequenceType'
// Do some stuff here...
}

最佳答案

这应该有效:

var temp = NSMutableArray(array: responseObject as! [AnyObject])

for a in (temp as NSArray as! [NSDictionary]) {
// 'a' is of type 'NSDictionary'
// Do some stuff here...
}

关于ios - @lvalue NSMutableArray' 不可转换为 'SequenceType',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31335685/

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