开始使用 ScriptingBridge 应用程序 Cocoa/Objective-C 时遇到问题
我正在尝试在我的 Mac OS 应用程序中使用 Scripting Bridge,但在实现它时遇到困难。我已经包含了该框架,并且打算将其与 Finder 一起使用,因此我也在我的应用程序中包含了 Finder.h 文件。
IE
#import <ScriptingBridge/ScriptingBridge.h>
#import "Finder.h"
但是,每当我打电话时:
FinderApplication *finder = [SBApplication applicationWithBundleIdentifier:@"com.apple.Finder"];
我都会收到错误
“FinderApplication”未声明(第一个 在此函数中使用)
我还需要做其他事情才能使其正常工作吗?
谢谢。
I'm trying to use Scripting Bridge in my Mac OS app and am having difficulty implementing it. I've included the framework, and am intending to use it with Finder, so I've included a Finder.h file in my application as well.
I.E
#import <ScriptingBridge/ScriptingBridge.h>
#import "Finder.h"
However, whenever I call:
FinderApplication *finder = [SBApplication applicationWithBundleIdentifier:@"com.apple.Finder"];
I get the error
'FinderApplication' undeclared (first
use in this function)
Are there any other things I need to do in order to get it working?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你是如何生成 Finder.h 文件的?我假设您像这样使用 sdef:
如果是这样,您的代码类似于我在我的应用程序中成功使用的代码。
How did you generate the Finder.h file? I assume you used sdef like this:
If so, your code is similar to what I'm using successfully in my apps.