为什么我的Cocoa应用程序只能工作一次?

时间:2013-05-09 07:50:22

标签: cocoa applescript-objc

我对Applescript很有经验但对xcode来说还是比较新的。我正在使用xcode 3.2.6。 我已经构建了一个接口,将数据输入到字段中,然后单击按钮,数据将被发送到脚本,脚本会执行此操作。但如果我再次点击,则没有任何反应。

脚本的基本结构如下:

script ScriptBetaAppDelegate

property parent : class "NSObject"

    on getData_(sender)
            ... This is where my Applescript code lives...
    end getData_

    on applicationWillFinishLaunching_(aNotification)
    -- Insert code here to initialize your application before any files are opened 
    end applicationWillFinishLaunching_

    on applicationShouldTerminate_(sender)
    -- Insert code here to do any housekeeping before your application quits 
    return current application's NSTerminateNow
    end applicationShouldTerminate_

    end script

我需要做些什么才能重复输入新数据并单击“完成”按钮,并且每次都运行脚本。目前,我必须在每次运行时退出并重新启动应用程序。

0 个答案:

没有答案