🍣

【Xcode エラー】「Anonymous closure argument not contained in a closure」【解決法

2023/05/24に公開

とあるUdemyのSwift講座のコードを模写していたら

以下の画像のように
「Anonymous closure argument not contained in a closure」
といったエラーが発生した。

【原因】

本来は「{}」を使うべきなのだが{}ではなく()を使っていたので発生した模様。

《参考記事》[Swift]配列をソートしようとしたらerror: anonymous closure argument not contained in a closureが出た

https://note.com/simd_float4x4/n/nefe212cea8ef

Discussion