gpt4 book ai didi

xcode - 如何在 Xcode 上使用 Cocoa-Applescript 将代码链接到 GUI

转载 作者:行者123 更新时间:2023-12-03 16:57:17 26 4
gpt4 key购买 nike

我正在尝试将我的代码链接到我的 GUI。但它不会让我。

目前,我的 GUI 上有一个标签、按钮和一个文本字段。这是我的 GUI 代码:

-- IBOutlets
property window : missing value

on buttonClicked_(sender)
display alert "Hello there " & (stringValue() of textField)
end buttonClicked_

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_

当我尝试使用应用程序委托(delegate)工具时,它不起作用。我将它拖到 GUI 上的部件上,它会形成一条蓝线。但是,“Outlets”下唯一显示的是“Window”

如果我运行该程序,GUI 就会出现,但它不会执行任何操作,因为代码未连接!

如何将我的代码连接到我的 GUI?

额外信息:Xcode 5.1

最佳答案

您必须声明 socket ,然后连接 xib 中的 socket 。按住 Ctrl 键并拖动(或单击鼠标右键并拖动)从 AppDelegate 到文本字段。然后按住 Ctrl 键并从按钮拖动到 AppDelegate,然后选择要发送的方法。

    -- IBOutlets
property window : missing value
property myTextField : missing value


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

on buttonClicked_(sender)
display alert "Hello there " & myTextField's stringValue
end buttonClicked_

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

关于xcode - 如何在 Xcode 上使用 Cocoa-Applescript 将代码链接到 GUI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23934042/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com