web-dev-qa-db-ja.com

Images.xcassets:エラー:タイプSimDeviceTypeに適したデバイスが見つかりませんでした

シミュレーターでアプリを実行しようとしたとき、Xcode8.3.2とXcode9 beta 1を保持していて、プロジェクトはXcode8.3.2で実行されていました。以下のエラーが発生しました。

Images.xcassets: error: Failed to find a suitable device for the type SimDeviceType : com.Apple.dt.Xcode.IBSimDeviceType.iPad-2x with runtime SimRuntime : 10.3 (14E269) - com.Apple.CoreSimulator.SimRuntime.iOS-10-3
    Failure Reason: Failed to create SimDeviceSet at path /Users/Mac/Library/Developer/Xcode/UserData/IB Support/Simulator Devices. You'll want to check the logs in ~/Library/Logs/CoreSimulator to see why creating the SimDeviceSet failed.
    Underlying Errors:
        Description: Failed to initialize simulator device set.
        Failure Reason: Failed to subscribe to notifications from CoreSimulatorService.
        Underlying Errors:
            Description: Error returned in reply to notification request: Connection invalid
            Failure Reason: Software caused connection abort
/* com.Apple.actool.document.notices */
10
iPC

私にとって、それは掃除を助けませんでした。 Sudo killall -9 com.Apple.CoreSimulator.CoreSimulatorServiceを実行する必要があり、シミュレーターを介してアプリを起動できました

28
Daniel Tovesson

このエラーが発生し、XcodeメニューからSimulatorを開くだけで解決しました。

Xcode-> Open Developer Tool-> Simulator

シミュレーターが開いて起動が完了したら、プロジェクトをクリーンアップして再構築しました。

9
adamup

プロジェクトを試してクリーンアップしてから、それを実行してください

製品に移動>クリーンアップしてから実行

1
Ash-Bash32