我知道这个问题已经以完全相同的方式提出,这里不能下标 [MPMediaItem] 类型的值,但我没有得到他的解决方案。
cell.textLabel!.text = allSongs![indexPath.row]
是我正在尝试的。
allSongs 是这样声明的var allSongs = [MPMediaItem]?()
你可能想做点什么链接这个:
cell.textLabel!.text = allSongs![indexPath.row].valueForProperty(MPMediaItemPropertyTitle) as? String