不能下标类型[MPMediaItem]#2的值

时间:2016-03-03 19:27:03

标签: ios swift uitableview mpmediaitem

我知道这个问题在cannot subscript a value of type [MPMediaItem]以完全相同的方式被问到了,但我没有让他的解决方案有效。

cell.textLabel!.text = allSongs![indexPath.row]

是我正在尝试的。

allSongs声明为var allSongs = [MPMediaItem]?()

1 个答案:

答案 0 :(得分:0)

您可能想要做一些链接:

 cell.textLabel!.text = allSongs![indexPath.row].valueForProperty(MPMediaItemPropertyTitle) as? String