iOS的多重启动图像

时间:2013-05-21 06:58:49

标签: ios image launch

我的应用有条款&条件页面。应用程序安装后第一次可见。接受条款后,它永远不会向用户显示。

我为第一页制作了启动图像,而不是用于术语页面。但应用程序安装后第一次应该不是标准。

  1. 那么如何根据条件使用2启动图像?

  2. 如果我只为我的应用设置了纵向模式(对于iPhone和iPad),Apple会拒绝吗?

2 个答案:

答案 0 :(得分:1)

  1. 我认为你不应该使用2启动图像。如果要根据条件检查图像,可以使用视图控制器显示,动画并转到下一个屏幕。启动图像只有一个。我们无法访问它。
  2. 只有iPhone和iPad的肖像不会拒绝。

答案 1 :(得分:0)

我这样解决了这个问题:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];

    // ... stuff

    if( [defaults objectForKey:@"GTCAccepted"] )
    {
        [self performSelector:@selector(gtcAccepted)]; //
    }
    else
    {
        GTCViewController* gtcViewController; // where GTCViewController is a normal UIViewController

        //universal app
        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
            gtcViewController = [[GTCViewController alloc] initWithNibName:@"GTCViewController-iPad" bundle:nil];
        else
            gtcViewController = [[GTCViewController alloc] initWithNibName:@"GTCViewController" bundle:nil];

        [window setRootViewController:gtcViewController]; // also can show as modal VC
        [gtcViewController release];

        // if accepted, set [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"GTCAccepted"]; in the GTCViewController
    }
}

和你的2张发布图片......

接受GTC后尝试此代码

[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"GTCAccepted"];

NSURL *path2 = [[NSBundle mainBundle] URLForResource:@"Default-568h@2x_2" withExtension:@"png"];
NSURL *path = [[NSBundle mainBundle] URLForResource:@"Default-568h@2x" withExtension:@"png"];

[[NSFileManager defaultManager] removeItemAtURL:path error:nil]; // permission denied

if([[NSFileManager defaultManager] copyItemAtURL:path2 toURL:path error:nil])
{
    NSLog(@"startItem replaced!");
}else
{
    NSLog(@"oh oh... item not replaced!");
}

更新:
代码无法在设备上运行,请参阅删除权限

顺便说一下,如果你从Xcode开始一直在模拟器上运行,你每次运行时都会覆盖它。在这里你没有机会在应用程序启动之前更改图像。