How to play animation/movie instead of iPhone splash screen?

前端 未结 3 1437
春和景丽
春和景丽 2021-02-11 00:13

I want to play an animation(Gif) or a movie instead of Default.png. Is that possible? I tried what is described in this blog :http://www.cuppadev.co.uk/iphone/playing-animated-g

相关标签:
3条回答
  • 2021-02-11 00:41

    If you're asking about a sanctioned App Store app, then no, you can't use anything but a static Default.png.

    If you're writing an app for jailbroken phone, this may be possible (but I don't know).

    0 讨论(0)
  • 2021-02-11 00:44

    Unfortunately, it's impossible to do it on the latest iPhone OS. A trick using symbolic link is currently blocked by OS.

    0 讨论(0)
  • 2021-02-11 01:03

    The Following code should come in - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

    NSBundle *bundle = [NSBundle mainBundle];
    if(bundle != nil)
    {
        NSString *videoPath = [bundle pathForResource:@"trail_video" ofType:@"mp4"];
        if (moviePath)
        {
            videoURL = [NSURL fileURLWithPath:moviePath];
        }
    }
    
    theMovie = [[MPMoviePlayerViewController alloc] initWithContentURL:videoURL];
    
    theMovie.moviePlayer.controlStyle = MPMovieControlStyleNone;
    theMovie.moviePlayer.scalingMode = MPMovieScalingModeFill;
    
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(moviePlayerDidFinish:)
                                                 name:MPMoviePlayerPlaybackDidFinishNotification
                                               object:theMovie.moviePlayer];
    
    [theMovie.moviePlayer setFullscreen:YES animated:NO];
    [theMovie.moviePlayer prepareToPlay];
    [theMovie.moviePlayer play];
    window.rootViewController = theMovie;
    [self.window.rootViewController.view bringSubviewToFront:mMoviePlayer.moviePlayer.view];
    

    In the moviePlayerDidFinish method load the screen which you desire to load.

    0 讨论(0)
提交回复
热议问题