我想播放动画(Gif)或电影而不是 Default.png。那可能吗?我尝试了这个博客中描述的内容:http ://www.cuppadev.co.uk/iphone/playing-animated-gifs-on-the-iphone/但我不知道如何播放 Gif 动画而不是 Default .png
问问题
4852 次
3 回答
4
如果您询问的是经过批准的 App Store 应用程序,那么不,除了静态 Default.png 之外,您不能使用任何东西。
如果您正在为越狱手机编写应用程序,这可能是可能的(但我不知道)。
于 2010-03-19T04:33:30.787 回答
1
下面的代码应该进来 - (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];
在moviePlayerDidFinish 方法中加载您想要加载的屏幕。
于 2013-10-15T14:04:03.267 回答
0
不幸的是,在最新的 iPhone 操作系统上不可能做到这一点。操作系统当前阻止了使用符号链接的技巧。
于 2010-03-19T08:34:09.630 回答