オリエンテーションと再生ビデオについて 1 つ質問があります。
私のアプリケーションは縦向きモードをサポートしていますが、ビデオを開始すると横向きモードのみが実行され、ビデオが完了すると自動的に縦向きモードになります。
私が使用しているコードの下
**MyMovieViewController.h**
#import <MediaPlayer/MediaPlayer.h>
@interface MyMovieViewController : MPMoviePlayerViewController
@end
**MyMovieViewController.m**
@implementation MyMovieViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
}
- (BOOL)shouldAutorotate
{
return NO;
}
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskLandscapeLeft;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationLandscapeRight;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
@end
ただし、上記のコードは iPhone 4.3 シミュレーターでのみ機能し、私のアプリケーションは 4.3 から 6.1 をサポートします。
ですから、私を助けてください。