在Xcode中停止应用程序时自动关闭iOS模拟器

前端之家收集整理的这篇文章主要介绍了在Xcode中停止应用程序时自动关闭iOS模拟器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
每当应用程序在 Xcode中停止时,是否可以关闭/退出iOS模拟器?我无法在Xcode或Simulator中找到设置.如果存在,它将有助于加快开发过程.

解决方法

要在构建停止时终止模拟器,您需要编译包含以下内容的可执行文件

#!/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");


}

猜你在找的Xcode相关文章