1

这似乎是我想要完成的一件简单的事情,远远低于 Xcode / Interface Builder 的能力。我已经搜索和搜索并没有给出我的答案,但大多数搜索都将我带到这里,所以我创建了一个帐户来询问专家。我想创建一个非常简单的 GUI,它有四到五个按钮,每个按钮执行一个简单的 shell 脚本,不需要终端窗口,但如果是这样的话,我可以用一个开始。除了 shell 脚本,我还需要在应用程序中安装 adb(Android 调试桥)和 fastboot 实用程序。我假设我需要将 adb 和 fastboot 以及我的其他文件放在 Resources 文件夹中,我还假设我需要将我的 shell 脚本放在 Classes 文件夹中。我真的只需要知道如何将按钮连接到脚本,我' 我希望这只是我忽略的一些简单的事情。提前致谢。

MacBook Pro 7,1 OSX 10.6.8 Xcode 3.2.6

4

1 回答 1

8

尝试这个 :

- (void)runCmd:(NSString *)cmd withArgs:(NSArray *)args
{
    if (task)
    {
        [task interrupt];

    }
    else
    {
        task = [[NSTask alloc] init];
        [task setLaunchPath:cmd];

        [task setArguments:args];

        [pipe release];

        pipe = [[NSPipe alloc] init];
        [task setStandardOutput:pipe];

        NSFileHandle* fh = [pipe fileHandleForReading];

        NSNotificationCenter* nc;

        nc = [NSNotificationCenter defaultCenter];
        [nc removeObserver:self];
        [nc addObserver:self 
               selector:@selector(dataReady:) 
                   name:NSFileHandleReadCompletionNotification 
                 object:fh];
        [nc addObserver:self selector:@selector(dataAvailable:) name:NSFileHandleDataAvailableNotification object:fh];
        [nc addObserver:self 
               selector:@selector(taskTerminated:) 
                   name:NSTaskDidTerminateNotification 
                 object:task];

        [task launch];
        [fh readInBackgroundAndNotify];
    }
}

- (void)dataAvailable:(NSNotification*)n
{
    NSLog(@"Data Available : %@",n);
}

- (void)dataReady:(NSNotification*)n
{
    NSData* d;

    d = [[n userInfo] valueForKey:NSFileHandleNotificationDataItem];

    if ([d length])
    {
        NSLog(@"Data Ready : %@",[[NSString alloc] initWithData:d encoding:NSUTF8StringEncoding]);
        [[[task standardOutput] fileHandleForReading] readInBackgroundAndNotify];
    }
}

- (void) taskTerminated:(NSNotification*)note
{
    [task release];
    task = nil;
}
于 2012-04-10T01:58:25.607 回答