當我打開新的Xcode 9並轉到Preferences > Components
我沒有看到下載iOS 11模擬器的選項。我敢肯定,100%我有最新的Xcode 9測試版4 Xcode 9 - 沒有iOS 11模擬器
我做了一些研究,並發現了Xcode中下載的索引,以確定它是什麼能夠下載。對我來說,那是: https://devimages-cdn.apple.com/downloads/xcode/simulators/index-9.0.0-CA351AD8-3176-41CB-875C-42A05C7CDEC7.dvtdownloadableindex
基本上一個能夠通過確定DTXcoce使用它的任何版本的Xcode:
defaults read /Applications/Xcode-beta.app/Contents/Info DTXcode
。
像0900
一個結果必須被轉換爲9.0.0
而且DVTPlugInCompatibilityUUID:
defaults read /Applications/Xcode-beta.app/Contents/Info DVTPlugInCompatibilityUUID
然後下載:https://devimages-cdn.apple.com/downloads/xcode/simulators/index-<the DTXcode>-<the UUID>.dvtdownloadableindex
。
並且最後爲了能夠打開它:plutil -convert xml1 <the downloaded .dvtdownloadableindex file>
有人可以驗證我有權利dvtdownloadableindex?或者提供一個網址到正確的版本?否則,我希望有人可以通過下載並取消模擬器,同時尋找到console.app
像this article