gpt4 book ai didi

ios8 - CGAffineTransformMakeTranslation 和 CGAffineTransformScale 变换在 ios7 和 ios8 中不同

转载 作者:行者123 更新时间:2023-12-02 04:52:55 25 4
gpt4 key购买 nike

我在 viewcontroller 中有一个 UITableView,想在 viewcontroller 的中心缩小。它在 ios7 中工作正常,代码如下:

CGSize appSize = [[UIScreen mainScreen] applicationFrame].size;
CGAffineTransform affineMatrix = CGAffineTransformMakeTranslation(appSize.width/2, 20);
affineMatrix = CGAffineTransformScale(affineMatrix, 0.5, 0.5);
self.transform = affineMatrix;

更新到 ios8 后,代码可能像这样可以正常工作,但在 ios7 中不起作用:

CGAffineTransform affineMatrix = CGAffineTransformMakeScale(0.5, 0.5);
affineMatrix = CGAffineTransformConcat(affineMatrix,CGAffineTransformMakeTranslation(0, -appSize.height/2+40));
self.transform = affineMatrix;

谁能解释一下为什么?我怎样才能在相同的代码中正常工作?

最佳答案

参见文章 http://revealapp.com/blog/constraints-and-transforms.html

它解释了 iOS7 中仿射变换错误的问题。对于简单的单词,您需要使用 [UIScreen mainScreen].scale

在 iOS 7 的 Retina 设备上手动将点转换为像素

关于ios8 - CGAffineTransformMakeTranslation 和 CGAffineTransformScale 变换在 ios7 和 ios8 中不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26051392/

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