私のアプリには、1 つのボタンと 2 つのビューがあります。ボタンをタップすると、スーパービューから最初のビューが削除され、スーパービューの 2 番目のビューがサブビューとして追加されます。しかし、問題は、デバイスの向きを縦向きから横向きに変更してからボタンをタップすると、横向きモードではなく縦向きビューでビューが表示されることです。これが私が使用しているコードです。
- (void)showFiles {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.25];
[UIView setAnimationTransition:([songTableView superview] ?
UIViewAnimationTransitionFlipFromLeft : UIViewAnimationTransitionFlipFromRight)
forView:toggleButton cache:YES];
UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];
if ((orientation == UIInterfaceOrientationLandscapeLeft) || (orientation == UIInterfaceOrientationLandscapeRight)) {
[songTableView setFrame:CGRectMake(0.0f, 44.0f, 480.0f, 256.0f)];
}
else {
[songTableView setFrame:CGRectMake(0.0f, 44.0f, 320.0f, 416.0f)];
}
if ([songTableView superview]) {
[toggleButton setImage:[UIImage imageNamed:@"AudioPlayerAlbumInfo.png"] forState:UIControlStateNormal];
}
else {
[toggleButton setImage:albumArtImageView.image forState:UIControlStateNormal];
}
[UIView commitAnimations];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:([songTableView superview] ?
UIViewAnimationTransitionFlipFromLeft : UIViewAnimationTransitionFlipFromRight)
forView:self.view cache:YES];
if ([songTableView superview])
{
albumArtImageView.image = albumArtImage;
albumArtImageView.contentMode = UIViewContentModeScaleAspectFit;
albumArtImageView.clipsToBounds = YES;
[songTableView removeFromSuperview];
[gradientLayer removeFromSuperlayer];
[self.view addSubview:uppercontrollsView];
[self.view addSubview:lowercontrollsView];
}
else
{
[albumArtImageView setImage:[UIImage imageNamed:@"AudioPlayerTableBackground.png"]];
albumArtImageView.contentMode = UIViewContentModeScaleAspectFill;
albumArtImageView.clipsToBounds = YES;
[uppercontrollsView removeFromSuperview];
[lowercontrollsView removeFromSuperview];
[self.view addSubview:songTableView];
[songTableView reloadData];
}
[UIView commitAnimations];
}