0

我有一个带有 4 个选项卡和一个连接到一个的导航栏的选项卡栏应用程序。在带有导航栏的选项卡上,我有一个按钮,可将您带到新页面。我也有一个可以让你回到标签页,但我有一个问题。当返回标签页时,动画正在扭曲。我用故事板完成了这一切,所以没有编码。我环顾四周,想把它放在代码中:

- (void) pushController: (UIViewController*) controller
     withTransition: (UIViewAnimationTransition) transition
{
[UIView beginAnimations:nil context:NULL];
[self pushViewController:controller animated:NO];
[UIView setAnimationDuration:.5];
[UIView setAnimationBeginsFromCurrentState:YES];        
[UIView setAnimationTransition:transition forView:self.view cache:YES];
[UIView commitAnimations];
}

但我不知道如何以及在哪里放置它。

4

1 回答 1

0

看看这个Apple guide to create a custom segue。您的执行代码将如下所示:

- (void)perform {
    [UIView beginAnimations:nil context:NULL];
    [self.sourceViewController.navigationController pushViewController:self.destinationViewController animated:NO];
    [UIView setAnimationDuration:.5];
    [UIView setAnimationBeginsFromCurrentState:YES];        
    [UIView setAnimationTransition:transition forView:self.view cache:YES];
    [UIView commitAnimations];
}

然后在您的故事板中,将 segue 的类型设置为 Custom,然后输入您的自定义 segue 类的名称。

于 2013-07-26T02:29:42.147 回答