I just installed the beta version of Xcode 7 and converted my Swift project with Swift 2 recommendations.
The build is ok, but xcassets: I reached this error in the logs:
CompileAssetCatalog /Users/phoenix/Library/Developer/Xcode/DerivedData/{...}/Build/Products/Debug-iphoneos/{...}.app {...}/Images.xcassets cd /Users/phoenix/Dev/Xcode/{...} export PATH="/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Applications/Xcode-beta.app/Contents/Developer/usr/bin/actool --output-format human-readable-text\ --notices --warnings --export-dependency-info /Users/phoenix/Library/Developer/Xcode/DerivedData/{...}/Build/Intermediates/{...}.build/Debug-iphoneos/{...}.build/assetcatalog_dependencies.txt --output-partial-info-plist /Users/phoenix/Library/Developer/Xcode/DerivedData/{...}/Build/Intermediates/{...}.build/Debug-iphoneos/{...}.build/assetcatalog_generated_info.plist\ --app-icon AppIcon --launch-image LaunchImage --compress-pngs\ --enable-on-demand-resources YES --target-device iphone --target-device ipad\ --minimum-deployment-target 7.0 --platform iphoneos --compile\ /Users/phoenix/Library/Developer/Xcode/DerivedData/{...}/Build/Products/Debug-iphoneos/{...}.app\ /Users/phoenix/Dev/Xcode/{...}/Images.xcassets /Users/phoenix/Dev/Xcode/{...}/Images.xcassets: error: Failed to find a suitable device for the type SimDeviceType : com.apple.CoreSimulator.SimDeviceType.iPad-2 with runtime SimRuntime : 9.0 (13A4254u) - com.apple.CoreSimulator.SimRuntime.iOS-9-0 Failure Reason: Failed to create new simulator device that matches SimDeviceType : com.apple.CoreSimulator.SimDeviceType.iPad-2 for runtime SimRuntime : 9.0 (13A4254u) - com.apple.CoreSimulator.SimRuntime.iOS-9-0 ((null))
UPD: Now when I try to launch iOS Simulator from the "Open Developer Tools" menu from the dock, I get this error:
Dyld Error Message: Library not loaded: @rpath/SimulatorKit.framework/Versions/A/SimulatorKit Referenced from: /Applications/Xcode-beta.app/Contents/Developer/Applications/Simulator.app/Contents/MacOS/Simulator Reason: image not found
UPD2: When trying to start the launch simulator from the terminal, I get a warning:
$ Applications/Simulator.app/Contents/MacOS/Simulator dyld: warning, LC_RPATH @loader_path/../../../../Library/PrivateFrameworks in /Applications/Xcode-beta.app/Contents/Developer/Applications/Simulator.app/Contents/MacOS/Simulator being ignored in restricted program because of @loader_path dyld: Library not loaded: @rpath/SimulatorKit.framework/Versions/A/SimulatorKit Referenced from: /Applications/Xcode-beta.app/Contents/Developer/Applications/Simulator.app/Contents/MacOS/Simulator Reason: image not found
I think this is the main problem ...
ios xcode7 ios-simulator
Phoenix
source share