Ambiguous use of 'subscript' with NSArray & JSON

大城市里の小女人 提交于 2019-12-04 05:01:41

问题


I have looked through the similar topics in stackoverflow but none of those solutions seem to work for me.

I have an app that fetch video through youtube API . The following code is giving the error.

var arrayOfVideos = [Video]()

// I am getting the error for the following line and it says "Ambiguous use of 'subscript'.

for video in JSON["items"] as! NSArray {

    let videoObj = Video()
    videoObj.videoId = video.valueForKeyPath("snippet.resourceId.videoId") as! String
    videoObj.videoTitle = video.valueForKeyPath("snippet.title") as! String
    videoObj.videoDescription = video.valueForKeyPath("snippet.description") as! String
    videoObj.videoThumbnailUrl = video.valueForKeyPath("snippet.thumbnails.high.url") as! String


    arrayOfVideos.append(videoObj)

}

I have also a class called Video where I define the Id, Title and etc... The above code refers here.

class Video: NSObject {

    var videoId:String = ""
    var videoTitle:String = ""
    var videoDescription:String = ""
    var videoThumbnailUrl:String = ""

}

I have tried to solve it by checking the link/suggestions below but it didn't work for me. I cannot seem to find the missing part.

Ambiguous Use of Subscript in Swift


回答1:


The problem here is almost certainly that your JSON is defined as a type that could be an array or a dictionary. With Xcode 7.1 ambiguity enforcement was levelled up, so you need to explicitly cast it to something that can be subscripted by a string. This should sort you nicely:

for video in (JSON as! NSDictionary)["items"] as! NSArray


来源:https://stackoverflow.com/questions/36755374/ambiguous-use-of-subscript-with-nsarray-json

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!