开始使用 ScriptingBridge 应用程序 Cocoa/Objective-C 时遇到问题

发布于 2024-10-22 18:46:01 字数 498 浏览 1 评论 0原文

我正在尝试在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

佼人 2024-10-29 18:46:01

你是如何生成 Finder.h 文件的?我假设您像这样使用 sdef:

#!/bin/sh
sdef /System/Library/CoreServices/Finder.app| sdp -fh --basename Finder

如果是这样,您的代码类似于我在我的应用程序中成功使用的代码。

How did you generate the Finder.h file? I assume you used sdef like this:

#!/bin/sh
sdef /System/Library/CoreServices/Finder.app| sdp -fh --basename Finder

If so, your code is similar to what I'm using successfully in my apps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文