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.
在我的 iOS 应用程序中,我看到很多时候应用程序卡在启动屏幕上很长时间,并且需要一些时间才能启动。
我暂停了所有线程,我的代码中没有线程在运行,只有在可可代码中。
什么可能导致它?
您可能在应用程序委托中做的太多了。将该代码更改为出现在第一个 vc 调用中。
可能是你在你的
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ }
方法,这是应用程序开始运行时调用的第一个方法。请检查此。