2023-02-09から1日間の記事一覧

Xcode: The compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions

開発環境 $ xcodebuild -version Xcode 14.1 Build version 14B47b # 14.2でも試した $ xcodebuild -version Xcode 14.2 Build version 14C18 エラーメッセージ The compiler is unable to type-check this expression in reasonable time; try breaking up …

SwiftUIでは可能な限り値を丸めずにviewに渡すことを心がけている

主語大きい。何が言いたいかと言うと、よく利用するIdentifiableを準拠させる構造体のプロパティは可能な限り丸めずに渡した方がIDの一意性を担保しやすい。 開発環境 $ xcodebuild -version Xcode 14.1 Build version 14B47b SwiftUIにおけるIdentifiable W…