当 Mac OSX 10.4 程序启动时,有没有办法调用 NSTextView 内部的方法?
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的问题很模糊。您是否正在使用 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 yourmain()
method.您可以尝试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.