字典

时间:2016-09-15 22:06:07

标签: arrays swift swift2 nsarray

我试图在一行中创建案例,但我找不到怎么做

我需要在一行中编写该代码

     if let holdings = i["holdings"] as Array where !holdings.isEmpty {

任何想法?

1 个答案:

答案 0 :(得分:1)

AnyObject,因为你没有指定数组中的内容。

if let holdings = i["key"] as? [AnyObject] where !holdings.isEmpty

if let holdings = i["key"] as? Array<AnyObject> where !holdings.isEmpty