18

由于某种未知原因,iPhone 6 模拟器(和设备)上的所有屏幕截图方法似乎都可能存在错误。每当我调用任何屏幕截图方法时,包括:

snapshotViewAfterScreenUpdates: resizableSnapshotViewFromRect: drawViewHierarchyInRect:

afterScreenUpdates 设置为 YES,屏幕闪烁。如果设置为 NO,则不会发生闪烁,但我无法获得所需的功能。

这些方法在除 iPhone 6 和 6+ 之外的所有其他模拟器中都适用于 iOS7.1 和 iOS8。

奇怪的是,如果我使用情节提要开始一个全新的项目并尝试类似的代码,我无法重现闪烁。我使用我的非故事板项目附加了闪烁的 gif:

在此处输入图像描述

这是非常简单的视图控制器:

    @implementation TestSnapshotController

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Snap" style:UIBarButtonItemStylePlain target:self action:@selector(_snap)];

    self.blueView = [UIView new];
    self.blueView.backgroundColor = [UIColor blueColor];
    self.blueView.frame = CGRectMake(100.0f, 100.0f, 100.0f, 100.0f);
    [self.view addSubview:self.blueView];
}

- (void)_snap
{
    [self.blueView snapshotViewAfterScreenUpdates:YES];
}

@end

这是我的 AppDelegate 以防万一:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

    TestSnapshotController *testVC = [TestSnapshotController new];
    UINavigationController *rootNavVC = [[UINavigationController alloc] initWithRootViewController:testVC];

    self.window.rootViewController = rootNavVC;
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];

    return YES;
}

任何帮助将不胜感激!

4

3 回答 3

5

运行以下代码时,我们看到了同样的问题:

[window drawViewHierarchyInRect:window.bounds afterScreenUpdates:YES];

到目前为止,我们找到的唯一解决方案是确保应用程序具有适合 iPhone 6 和 6+ 大小的启动图像,然后我们不再出现闪烁。

于 2014-09-22T20:39:40.950 回答
2

在 Ryans 解决方案之后,我添加了一个启动屏幕 xib(或故事板),这解决了 iPhone 6 和 6 plus 上的问题。

因此,请确保您在项目设置中设置了它,它最终应该看起来像这样:

在此处输入图像描述

于 2014-10-23T16:13:47.593 回答
0

这似乎是 Apple 方面的一个错误,发生在缩放的应用程序(那些没有 iPhone 6/6+ 的设计/资产/布局支持的应用程序)这个错误帮助我克服了它: iOS 8 上的 snapshotViewAfterScreenUpdates 故障

主要用途: [view.layer renderInContext:UIGraphicsGetCurrentContext()];

于 2015-02-11T18:22:31.530 回答