我有错误(shoppingList.lastObject)
var shoppingList = ["bananas", "milk", "vanilla ice cream"]
var itemCount = shoppingList.count
print("There are \(itemCount) items.")
for item in shoppingList
{
print("I need to buy \(item).")
}
print("The most important item on my list is definitely \(shoppingList.lastObject)")
它说lastObject不是成员。
最佳答案
首先,我将使用一些直接从Playground裁剪的图像为您提供代码示例。
我将仅使用您的代码发布所有已检查的阶段。最后,为了更好的理解,我还将发布错误。
1.您的问题(仅假设)
2.解决方案
3.一些额外功能
4.其他一些额外功能
5.现在,在某些情况下您可能会遇到的错误
谢谢
希望这会有所帮助。
关于ios - 类型“[String]”的值没有成员“lastObject”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35909824/