解决方法
要在构建停止时终止模拟器,您需要编译包含以下内容的可执行文件
#!/bin/sh osascript -e 'tell app "iPhone Simulator" to quit'
保存此文件,然后打开Xcode首选项的行为部分,在运行完成部分将脚本文件添加到运行部分.
希望这对你有用,但是这种方法似乎有点不稳定,不幸的是我能想出的最好的方法!
祝好运!
你不是在制作OS X应用程序太糟糕了,因为这样做非常容易.这部分是无关紧要的,但谁知道,您将来可以使用它!
- (IBAction)KillSim:(id)sender { NSLog (@"Sim Kill Begin"); NSDictionary* errorDict; NSAppleEventDescriptor* returnDescriptor = NULL; NSAppleScript* scriptObject = [[NSAppleScript alloc] initWithSource: @"tell application \"iPhone Simulator\" to quit"]; returnDescriptor = [scriptObject executeAndReturnError: &errorDict]; [scriptObject release]; if (returnDescriptor != NULL) { // successful execution if (kAENullEvent != [returnDescriptor descriptorType]) { // script returned an AppleScript result if (cAEList == [returnDescriptor descriptorType]) { // result is a list of other descriptors } else { // coerce the result to the appropriate ObjC type } } } else { // no script result,handle error here } NSLog (@"Sim Killed End"); }