Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想让图像出现在屏幕中间。当我将 IOS 模拟器从 iPhone 4s 更改为 5 时,图像不会出现在屏幕中间,而是出现在顶部。
我在想有一种方法可以做类似的事情: UIImageView.center.y = 屏幕长度/2
请让我知道是否有办法做到这一点。
您将希望首先使用 CGRect 获取屏幕尺寸。然后您可以使用 CGRect 来获取屏幕的高度和宽度。
CGRect screenSizeRect = [[UIScreen mainScreen] bounds]; CGFloat width = screenSizeRect.size.width; CGFloat height = screenSizeRext.size.height;