タブバーアプリがあり、タブの 1 つのビューコントローラーが webview を youtube ビデオに読み込みます。再生をクリックしてビデオを見ようとすると、回転できない理由がわかりません。
これが私のコードです
//
// TefViewController.m
// SephardiJews
//
// Created by Yuval Marcus on 7/19/12.
// Copyright (c) 2012 iOS Developer, Chief Writer at Sephardijews.com. All rights reserved.
//
#import "TefViewController.h"
@implementation TefViewController
@synthesize tef;
-(void)viewDidLoad {
[super viewDidLoad];
[tef loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.youtube.com/watch?v=YSuH69FlXiM"]]];
}
// Can't rotate landscape
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
@end