xcodeをupdateした後、runした際にタイトルのようなエラーが出たのでメモ
エラーメッセージを見るとxcodeが対象のiphoneのOSをversionをサポートしてないということのよう。 Xcode.appの下にあるDeviceSupportに使いたいOSのversionが含まれていないとこうなるらしい。
古いxcodeから必要なversionを含むディレクトリを持ってくればOK。コピーしてもいいが以下のようにリンクを貼るのが楽。
$ ln -s /Applications/Xcode-7.3.1.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/7.1 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/
参考
ios - Xcode: Could not locate device support files - Stack Overflow