当app从后台模式重新启动时,定义自定义启动图像

时间:2011-07-25 21:42:27

标签: ios background

当app从背景模式重新启动时,是否可以使用不同的启动图像? 如果是这样,如何实现呢? 这不是关于不同的设备方向。 我到处搜索但没有运气。

1 个答案:

答案 0 :(得分:0)

我猜您可以在此方法中添加启动图像:

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    /*
     Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
     */
}

它位于您应用的代表处。