iPhoneのsimulatorを起動した後、
flutter run
を叩いてiPhoneシミュレータでFlutterのデバッグビルドを動かそうとした時、以下のエラーに遭遇し、シミュレータでのアプリ起動に失敗しました。
DVTCoreDeviceEnabledState: DVTCoreDeviceEnabledState_Disabled set via user default (DVTEnableCoreDevice=disabled)
xcodebuild: error: Unable to find a destination matching the provided destination specifier:
エラーの原因は、XCodeプロジェクトでBuild ConfigurationがDebugになっていないことでした。
XCodeプロジェクトのRunner.xcworkspaceを開き、XCode画面上部の「Runner」→「Edit Scheme...」→「Run」タブ と進みます。Infoタブの最上部に「Build Configuration」があるので、「Debug」以外になっていたら「Debug」に戻します。
自分はこれで動くようになりました。