当 Mac OSX 10.4 程序启动时,有没有办法调用 NSTextView 内部的方法?

发布于 2024-10-04 19:35:16 字数 109 浏览 2 评论 0原文

我正在尝试使用 Objective-C 制作 Mac OSX 程序,并且在程序启动(由用户打开)时尝试调用 NSObject 内的方法。我尝试过很多不同的事情。我仍然坚持这一点。

I'm trying to make a Mac OSX program in Objective-C, and I'm trying to call a method inside an NSObject when the program is launched (opened by the user). I've tried so many different things. I'm still stuck on this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

李不 2024-10-11 19:35:16

你的问题很模糊。您是否正在使用 Cocoa AppKit 框架,或者您是否正在尝试使用 Objective-C 编写一个简单的命令行工具?在前者中,在应用程序委托类中编写一个 -applicationDidFinishLaunching: 方法,它将在应用程序完成启动时调用。在后一种情况下,只需将代码添加到您的 main() 方法中。

Your question is quite vague. Are you using the Cocoa AppKit framework or are you trying to write a simple command-line tool using Objective-C? In the former, write an -applicationDidFinishLaunching: method in your application delegate class and it will be called when, well when the app finishes launching. In the later case, just add code to your main() method.

怪我鬧 2024-10-11 19:35:16

您可以尝试notify_post(“com.yourcompany.yourapp.themethod”)。

或者,只包含 NSObject 和 init 的标头,调用该方法。

You can try notify_post("com.yourcompany.yourapp.themethod").

Or, just include the header of the NSObject and init, call the method.

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