書籍の正誤表

書籍「Swift 4プログラミング入門 iOS 11+Xcode 9対応」の正誤情報です。


P. 105 実行結果

Chapter2/IfOr/IfOr/ViewController.swiftの実行結果が、直前のChapter2/NoNest/NoNest/ViewController.swiftのものになっていました。

2の倍数でも3の倍数でもありません

2か3の倍数です

P. 222 サンプルプログラム

Chapter6/MinMaxShorthand/MinMaxShorthand/ViewController.swiftが、直前のChapter6/MinMax/MinMax/ViewController.swiftと同じ内容になっていました。

let info = [
    "width": 200,
    "height": 100,
    "fontSize": 16
]

print(info.min { a, b in a.value < b.value })
print(info.max { a, b in a.value < b.value })

let info = [
    "width": 200,
    "height": 100,
    "fontSize": 16
]

print(info.min { $0.value < $1.value })
print(info.max { $0.value < $1.value })

https://github.com/tnantoka/swiftbook-examples/blob/master/Chapter6/MinMaxShorthand/MinMaxShorthand/ViewController.swift