iPhone - 获取视图的大小(以像素为单位)

发布于 2024-10-31 14:40:31 字数 172 浏览 4 评论 0原文

我有一台相机拍摄的照片,我想将其调整为视图的确切大小。但是...iPhone 4 上的bounds.size 不考虑视网膜显示屏。

我想要一个可以为我提供视图的真实像素大小的代码,这样它就可以在任何设备上工作而无需测试/了解它运行的硬件类型

你知道我该怎么做吗?

I have a camera taken picture, and I'd like to resize it to the exact size of a view. But... bounds.size on an iPhone 4 does not take account of the retina display.

I'd like a code that can give me the real pixel size of the view, so it can work on any device without having to test / to know the kind of hardware it runs on.

Do you know how I may do this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹿! 2024-11-07 14:40:31

每个视图都有 contentScaleFactor 属性,通常为 1.0(3G、3GS、iPad)或 2.0(视网膜屏幕)。另一种方法是使用 [[UIScreen mainScreen] scale],它具有相同的值。

注意为了与 4.0 之前的 iOS 版本保持兼容,您必须在获取值之前使用 respondsToSelector:@selector(contentScaleFactor) 检查该方法是否可用。

Every view has the contentScaleFactor property, which is typically 1.0 (3G, 3GS, iPad) or 2.0 (retina screens). Another approach is to use [[UIScreen mainScreen] scale], which has the same values.

note to remain compatible with iOS versions prior to 4.0, you have to check if the method is available using respondsToSelector:@selector(contentScaleFactor) before getting the value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文