前端之家收集整理的这篇文章主要介绍了
ios – Xcode游乐场不执行功能,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我创建了一个新的游乐场,我
添加了简单的
功能,但该
功能从未被
调用过:
var str = "New playground"
func hello()
{
print("Hello,World")
}
你们中的任何人都知道为什么函数没有被调用?
我真的很感谢你的帮助
因为你没有
调用该
函数.只需称呼它:
func hello()
{
print("Hello,World")
}
hello()
原文链接:https://www.f2er.com/iOS/330982.html