gpt4 book ai didi

iOS 7 UINavigationController 过渡到 UITableView : black-translucent layer during animation

转载 作者:行者123 更新时间:2023-11-29 12:39:11 25 4
gpt4 key购买 nike

在我的新 iOS 应用中,我想为整个应用及其 View 使用固定背景。

当单击导航项以显示设置表 Controller 时,一个丑陋的黑色半透明层或类似的东西会在几分之一秒内出现在整个屏幕上,直到动画完成。

有什么想法可以消除这种不良行为吗?谢谢!

演示:

Image

better .mp4 version of the demo @ Dropbox

编辑:UINavigationController 包含背景图像。

我的设置 TableViewController 被修改成这样:

self.tableView.backgroundView = nil;
self.tableView.opaque = NO;
self.tableView.backgroundColor = [UIColor clearColor];

最佳答案

这是因为 iOS 7 中标准的 UINavigationController 推送动画。当一个新的 ViewController 被推送到堆栈上时,它会自己覆盖在前一个 ViewController 之上,并在其下方有一个轻微的阴影。

我认为的解决方案是实现您自己的过渡。像这样:

新建一个UINavigationController类,我命名为CustomNavigationController

CustomNavigationController.h

@interface UINavigationController (Retro)

- (void)pushViewControllerCustom:(UIViewController *)viewController;

@end

CustomNavigationController.m

@implementation UINavigationController (Retro)

- (void)pushViewControllerCustom:(UIViewController *)viewController {
CATransition *transition = [CATransition animation];
transition.duration = 0.2;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionDefault];
//Fade here look nice, no more black shadow stuff
transition.type = kCATransitionFade;
transition.subtype = kCATransitionFromRight;
[self.view.layer addAnimation:transition forKey:nil];

[self pushViewController:viewController animated:NO];
}

@end

使用方法:

- (IBAction)barButtonItemPressed:(id)sender
{
TableViewController *tableView = [self.storyboard instantiateViewControllerWithIdentifier:@"table"];
[self.navigationController pushViewControllerCustom:tableView];
}

关于iOS 7 UINavigationController 过渡到 UITableView : black-translucent layer during animation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25476702/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com