[WN] 更新课程

This commit is contained in:
杨皓博
2021-11-18 20:04:15 +08:00
committed by GitHub
parent 73342fb513
commit 87721a2c97

View File

@@ -35,24 +35,34 @@ Swift 是一种支持多编程范式和编译式的开源编程语言,苹果
在App Store下载Xcode完毕后(这里以Xcode13为例),双击运行:
- 点击`Create a new Xcode project`
![Alt text](./images/1637228746939.png)
- 选择`iOS`-`App``Next`
![Alt text](./images/1637228788344.png)
> 这里代表你选择开发一个iOS平台的App
>
> **简单介绍常见项目选择:**App创建一个标准的App模版也是我们创建新项目一般勾选的模版
>
> ducument App:文档App模版
>
> Game游戏App模版
>
> Augmented Reality App: AR项目模板
>
> Framework创建一个framework库类似于封装SDK等
>
> Static Library:创建静态库
>
> Metal library: metal库
>
> **顶部平台介绍**->Mutiplatfrom是跨平台开发如一套代码在Mac上运行、pad、iphone、ios也就是主要在iOS平台上运行的项目、macOS主要是在macOS上运行的项目开发、watchOS运行在apple watch上的项目、tvOS苹果电视项目
- 输入自己的`Product Name``Organization Identifier`
![Alt text](./images/1637230229308.png)
这里我们默认选择Swift语言Interface选择Storyboard
> **product name**:表示项目名
> **Team** : 当前队伍如果是团队合作开发或企业开发会有专属的Team
@@ -85,7 +95,9 @@ Swift 是一种支持多编程范式和编译式的开源编程语言,苹果
```
![Alt text](./images/4.png)
- 点击运行,结果如下:![Alt text](./images/5.png)
- 点击运行,结果如下:
![Alt text](./images/5.png)
至此我们完成了第一个iOS程序的搭建