Swift 相关 Bug

收集一些遇见的 bug

  1. "unable to find a suitable simulator device"

在升级 XCode 之后打开 playground,发现无法 run,遇到如上提示

解决:

  • 删除 Devices 文件夹
➜  ~ Library
➜  Library Developer
➜  Developer CoreSimulator
➜  CoreSimulator Devices
➜  Devices ..
➜  CoreSimulator rm -rf ./Devices
  • 退出 Xcode 和模拟器

  • 杀死模拟器进程

killall -9 com.apple.CoreSimulator.CoreSimulatorService
  • 重新运行 Xcode

你可能感兴趣的:(Swift 相关 Bug)