【Swift】Xcode中playground的使用

时间:2023-01-23 18:35:14

1.下载Xcode 6或以上版本
【Swift】Xcode中playground的使用

2.点击Xcode
【Swift】Xcode中playground的使用

3.选择下图中的’Get started with a playground’
【Swift】Xcode中playground的使用

4.填写好下面两个选项
【Swift】Xcode中playground的使用

5.编写好代码,可以看到右侧有结果,点击第9行右侧的+可以得到下面框内的结果
【Swift】Xcode中playground的使用

6.下面是一段打印*的循环语句:
【Swift】Xcode中playground的使用
这里除了循环次数(2 times)好像看不到其他结果

7.别急,可以通过下面两种方式调出console output:

①‘View–>Assistant Editor–>Show Assistant Editor’
②使用快捷键:option+command+enter

【Swift】Xcode中playground的使用