完成 chapter3/07_Attributes 翻译 (#884)

* chapter2/05_Control_Flow 优化翻译细节

* chapter3/07_Attributes 粗译

* chapter3/07_Attributes 完成校稿
This commit is contained in:
BqLin
2019-02-15 22:05:48 +08:00
committed by Jie Liang
parent 096d239c83
commit 0a30944f53
2 changed files with 252 additions and 72 deletions

View File

@ -779,7 +779,7 @@ if #available(iOS 10, macOS 10.12, *) {
在它一般的形式中,可用性条件使用了一个平台名字和版本的列表。平台名字可以是 `iOS``macOS``watchOS``tvOS`——请访问[声明属性](../chapter3/06_Attributes.html)来获取完整列表。除了指定像 iOS 8 或 macOS 10.10 的大版本号,也可以指定像 iOS 11.2.6 以及 macOS 10.13.3 的小版本号。
```swift
if #available(platform name version, ..., *) {
if #available(平台名称 版本号, ..., *) {
APIs 可用,语句将执行
} else {
APIs 不可用,语句将不执行