标签: swift
如何将Dictionary<String, String>添加到'数组&gt;?
Dictionary<String, String>
我试过了:
self.playerData.basicItemDict += self.playerData.selectedItemArray
我试着在堆栈上寻找答案,但却找不到任何惊喜。
谢谢!
答案 0 :(得分:4)
您应该尝试使用append方法。像这样:
append
array.append(dictionary)