在使用Alamofire和AVFoundation时,使用下标错误

时间:2016-03-23 15:06:33

标签: ios swift avfoundation alamofire subscript

我使用Alamofire框架来调用Web服务并获得一首歌。之后我想用AVFoundation库中的AVAudioPlayer播放这首歌。但是,当我导入AVFoundation库时,Alamofire代码的一部分显示了对下标的模糊使用'错误。这是出现错误的地方。

Alamofire.request(.GET, myurl).responseJSON
    {
            response in
            if let JSON = response.result.value
            {
                let tt=JSON[CategoryRow.sharedindex.item] as? NSDictionary...}}

错误出现在最后一行。

0 个答案:

没有答案