前書き
iPhoneアプリでも作ろうとmacを新調して、swiftの勉強を始めたのはいいけど
なぜか、永遠に終わらなくて、勉強が進まないので、CUIでswift
本文
Buggy Simulator's main process is still working even after Xcode closing. So here're the steps: Quit Xcode; Kill com.apple.CoreSimulator.CoreSimulatorService process in Activity Monitor; Launch Xcode and run your Playground.
まず、xcodeを終了しておく
シェル上でPIDを確認
$ ps -xa|grep com.apple.Core 22361 ?? 0:04.56 /Library/Developer/PrivateFrameworks/CoreSimulator.framework/Versions/A/XPCServices/com.apple.CoreSimulator.CoreSimulatorService.xpc/Contents/MacOS/com.apple.CoreSimulator.CoreSimulatorService 22790 ttys002 0:00.00 grep com.apple.Core
普通のkillじゃ死なないので、-9をつける
$ kill -9 22361
死んだのを確認
$ ps -xa|grep com.apple.Core 22790 ttys002 0:00.00 grep com.apple.Core
これでおk、あとはxcodeを起動すればできる