iPhone - 获取视图的大小(以像素为单位)
我有一台相机拍摄的照片,我想将其调整为视图的确切大小。但是...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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个视图都有
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.