- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if (interfaceOrientation == (UIInterfaceOrientationPortrait))
[self embedYouTube:yout frame:CGRectMake(30, 155, 260, 200)];
if (interfaceOrientation == (UIInterfaceOrientationLandscapeRight))
[self embedYouTube:yout frame:CGRectMake(30, 155, 400, 200)];
if (interfaceOrientation == (UIInterfaceOrientationLandscapeLeft))
[self embedYouTube:yout frame:CGRectMake(30, 155, 400, 200)];
if (interfaceOrientation == (UIInterfaceOrientationPortraitUpsideDown))
[self embedYouTube:yout frame:CGRectMake(30, 155, 260, 200)];
return YES;
}
回転時に埋め込み YouTube のサイズと位置を変更しようとしていますが、うまくいきません。
たぶん回転していますが、位置も大きさも変わっていません。