在Iphone的简历上的启动画面
问题描述:
我想在应用程序从后台恢复时在我的应用程序上添加启动画面。这可能吗?提前致谢
I want to add splash screen on my app when the app is resumed from the background.Is this possible? Thanks in advance
答
您可以在中更新视图堆栈 - [UIApplicationDelegate applicationWillResignActive:]
。
当应用程序恢复时,更改将会显示,您可以在中再次删除启动屏幕 - [UIApplicationDelegate applicationDidBecomeActive: ]
。
The changes will be visible when the app resumes, and you can remove the splash screen again in -[UIApplicationDelegate applicationDidBecomeActive:]
.