替换println 为 print

This commit is contained in:
chenyc
2015-07-21 17:35:04 +08:00
parent 0779f979ac
commit 1ffaef1bd5
16 changed files with 214 additions and 224 deletions

View File

@ -751,7 +751,7 @@ Swift 有内置支持去检查接口的可用性的,这可以确保我们不
```swift
if #available(iOS 9, OSX 10.10, *) {
// 在 iOS 使用 iOS 9 APIs , 并且在 OS X 使用 OS X v10.10 APIs
// 在 iOS 使用 iOS 9 APIs , 并且在 OS X 使用 OS X v10.10 APIs
} else {
// 回滚至早前 iOS and OS X 的API
}
@ -767,4 +767,4 @@ if #available(`platform name` `version`, `...`, *) {
} else {
`fallback statements to execute if the APIs are unavailable`
}
```
```