LoginSignup
1
1

More than 5 years have passed since last update.

iOS 10 Xcode-beta のシミューレータが起動しない時

Posted at

症状

iOS シミューレータがアップルのマークから進まず、起動しない。

対応

Applications 内の Xcode-beta のディレクトリに日本語名があるとそのせいなのでリネームする。
それでもダメだったら古いシミュレータを削除して Xcode を入れ直す

シミュレータの場所は下記

/Users/onotakaaki/Library/Developer/CoreSimulator/Devices

自分は下記のコマンドで 10 日以上前のものを消しちゃいました。

cd /Users/onotakaaki/Library/Developer/CoreSimulator/Devices
find ./ -mtime +10 -depth 1 | xargs rm -rf

参考

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1