翻轉視頻平鋪我有這樣的,當我在衆目睽睽之下發揮它和翻轉模擬器水平的視頻不會翻轉視頻。我如何根據iPhone的加速度計進行視頻翻轉?在Xcode
下面是視頻的代碼,如果有幫助:
- (void)viewDidAppear:(BOOL)animated {
NSBundle *bundle=[NSBundle mainBundle];
NSString *moviePath = [bundle pathForResource:@"MainPageMovie" ofType:@"mp4"];
NSURL *movieURL=[[NSURL fileURLWithPath:moviePath] retain];
MPMoviePlayerController *theMovie = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
theMovie.scalingMode = MPMovieScalingModeAspectFill;
theMovie.view.frame = CGRectMake(115.0, 156.0, 200.0, 150.0);
[self.view addSubview:theMovie.view];
[theMovie play];
[super viewDidLoad];
self.view.backgroundColor = [UIColor viewFlipsideBackgroundColor];
}
'返回UIInterfaceOrientationIsLandscape(interfaceOrientation);' – 2011-04-10 00:13:11
維拉沒有這個應用程序是一個原始的一種,我還沒有任何的觀點添加的旋轉。所有的視圖都是垂直的。我只是想旋轉視頻,當它在全景。這可以做到嗎? – 2011-04-10 00:35:02
問題解決了視頻:)我剛剛添加(返回YES;)代碼。 但現在問題是,當我旋轉模擬器時,所有其他視圖都會旋轉。我沒有爲其他視圖添加橫向視圖。我怎樣才能允許視頻旋轉? – 2011-04-10 00:54:57