I want to test my apps in the iOS 10 simulator, but I\'m not sure where to get the .runtime
file for iOS 10. I don\'t see a download for it under Components in
All ios 10 simulator are already downloaded with xcode8 - beta it self. You can download additional simulators from preference -> Components.
And You can get data for you app in those simulators at following path.
/Users/User_ACC_Name/Library/Developer/CoreSimulator
This worked for me:
Steps 1 to 5 Screenshots
Ensure existing simulators are closed. Then open XCode 8 (beta):
Go to menu XCode -> Open Developer Tools -> Simulator.
I ran into this issue earlier today. After installing Xcode - beta, my simulator was still only displaying iOS simulators 9.3 and below. What eventually ended up working for me was:
Once the simulator launched, I began to see iOS 10 in the Hardware -> Device drop down. Hope that helps.
The iOS 10 Beta Simulator is shipped inside of Xcode 8.0 Beta. You do not need to download anything extra. The primary reason for the large size of the Xcode download is for the three simulator runtimes that it contains.
Nothing already mentioned worked for me. I was missing iOS 10.3 simulators in Xcode 8.3.3. What worked for me was to reset the simulators using fastlane snapshot tool:
sudo gem install snapshot
snapshot reset_simulators
Source: https://stackoverflow.com/a/37814682/1318739