Objective-C 程序中首先调用哪个类?

发布于 2024-11-25 17:00:05 字数 146 浏览 1 评论 0原文

在Java中,我们可以指定程序启动时调用的类。它必须有 public static void main .. 你知道该怎么做。

Objective-C 中怎么样?在程序中可能存在的所有类中,哪一个首先被调用?

In Java one can specify the class what class is called when program starts. It must have public static void main .. you know the drill.

How about in Objective-C? Of all the classes you may have present in your program which one is called first?

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

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

发布评论

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

评论(2

醉殇 2024-12-02 17:00:05

起点不在类中,而是在 main 函数中,与常规 C 相同:

int main( int argc, const char *argv[] )

对于 iOS 应用程序,通常会为您生成该函数,并将控制权传递到您的 UIApplicationMain 中>。

有关更多信息,请参阅文档中有关主函数的部分 此处

The starting point is not in a class but in the main function, same as regular C:

int main( int argc, const char *argv[] )

For an iOS app, this is generally generated for you and control is passed into your UIApplicationMain.

For more information, see the section on the main function in the docs here.

泪之魂 2024-12-02 17:00:05

首先调用的是 main,就像在 C 中一样。该函数通常调用 UIApplicationMain,后者根据包的 plist 文件的内容创建主应用程序对象,然后执行应用程序的事件循环。

The first thing called is main, just like in C. This function usually calls UIApplicationMain, which in turn creates the main application object, based on the contents of the bundle's plist file, and then executes the application's event loop.

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