我使用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...}}
错误出现在最后一行。