作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将我的代码链接到我的 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/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!