Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
无法在配置文件中指出我的应用程序委托是 AppDelegate.h 的位置?或者也许这个名字默认使用总是?
如果您查看 main.m,UIApplicationMain() 的第四个参数是应用程序委托的类:
@autoreleasepool { return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); }
该调用的结果将创建此类的一个实例。
查看 main.m(对 的调用UIApplicationMain)。那里的样板有类定义。
UIApplicationMain