我知道这个问题在cannot subscript a value of type [MPMediaItem]以完全相同的方式被问到了,但我没有让他的解决方案有效。
cell.textLabel!.text = allSongs![indexPath.row]
是我正在尝试的。
allSongs声明为var allSongs = [MPMediaItem]?()
答案 0 :(得分:0)
您可能想要做一些链接:
cell.textLabel!.text = allSongs![indexPath.row].valueForProperty(MPMediaItemPropertyTitle) as? String