iPhone 5和4s上没有显示图像

时间:2015-09-07 11:10:30

标签: ios get uiimageview uiimage

我的桌面视图在iPhone 5s上的显示方式:

enter image description here

以及它在iPhone 5及更低版本上的外观:

enter image description here

使用此方法从服务器加载图像:

- (void)didSimulatePhysics
{
    [self enumerateChildNodesWithName:@"firstNode" usingBlock:^(SKNode *node, BOOL *stop) {
        if (node.alpha > 0.0) {
            node.alpha = 0.0;
        }
    }];
}

iPhone 5s上每个单元格的控制台输出如下所示:enter image description here

在iPhone 5及以下版本中,NSLog不会返回任何内容。

0 个答案:

没有答案