2

我想复制 iPhone 音乐应用程序的行为。当您在该应用程序中播放专辑并点击右上角的按钮时,专辑封面会翻转以显示其UITableView后面的曲目。

是否可以通过自定义来完成此操作UIStoryboardSegue

或者只是在使用相同控制器的两个视图之间切换的最佳方式?

4

2 回答 2

2

在同一个视图控制器的两个视图之间切换可能更简单,例如

- (IBAction)showTracksView
{
    [UIView transitionWithView:self.view 
                  duration:1.0 
                   options:UIViewAnimationOptionTransitionFlipFromLeft 
                animations:^{ tracksView.hidden = NO; } 
                completion:^(BOOL finished){ self.navigationItem.title = @"Tracks"; }];
}

- (IBAction)hideTracksView
{
    [UIView transitionWithView:self.view 
                  duration:1.0 
                   options:UIViewAnimationOptionTransitionFlipFromLeft 
                animations:^{ tracksView.hidden = YES; } 
                completion:^(BOOL finished){ self.navigationItem.title = @"Album cover"; }];
}

其中 trackView 是您的 UITableView 轨道。

于 2012-02-27T21:51:43.413 回答
0

我遇到了这个挑战,并使用自定义 segue 来呈现视图控制器来解决它。只需创建一个基于 UIStoryboardSegue 的新类。

这是我的自定义转场

.h 文件:

#import <UIKit/UIKit.h>

@interface BRTrackNotesSegue : UIStoryboardSegue

@end

.m 文件

@implementation BRTrackNotesSegue

- (void) perform {
    UIViewController *src = (UIViewController *) self.sourceViewController;
    UIViewController *dst = (UIViewController *) self.destinationViewController;
    [UIView transitionWithView:src.navigationController.view duration:0.50
                       options:UIViewAnimationOptionTransitionFlipFromLeft
                    animations:^{
                        [src.navigationController pushViewController:dst animated:NO];
                    }
                    completion:NULL];
}

@end

在界面生成器中选择 segue 并将 Segue Class 设置为自定义 segue 的名称。

第二个视图控制器包含以下内容以使用相同的动画关闭:

- (IBAction)done:(id)sender {


    [UIView transitionWithView:self.navigationController.view
                      duration:0.50
                       options:UIViewAnimationOptionTransitionFlipFromLeft
                    animations:nil
                    completion:nil];
    [self.navigationController popViewControllerAnimated:NO];

}
于 2014-05-21T08:33:10.260 回答