XCodeでプロジェクトを実行すると、テストで次のエラーが発生します。
target specifies product type 'com.Apple.product-type.bundle.unit-test', but there's no such product type for the 'iphoneos' platform
数回のXCodeの更新後に発生しました。誰もこれを修正する方法を知っていますか?
Xcode 6がocunitテストバンドルの製品識別子を_com.Apple.product-type.bundle
_から_com.Apple.product-type.bundle.ocunit-test
_に変更したようです。
$(ProjectName).xcodeproj/project.pbxproj
を編集し、_com.Apple.product-type.bundle.ocunit-test
_のインスタンスを_com.Apple.product-type.bundle
_に置き換えます。今のところ、Xcode 6でプロジェクトを開き、Xcode 5でプロジェクトを開きたいときはいつでもこれを行う必要があります。
私のために働いたのは: