I have the following code:
private func setupImageViews() {
let width = UIScreen.main.bounds.width * 0.5
let x = (UIScreen.main.bounds.width * 0.5) - width/2
let y = UIScreen.main.bounds.width * 0.191
focusImageView = UIImageView(frame: CGRect(x: x, y: y, width: width, height: width))
focusImageView.image = UIImage(named: "scan_qr_focus")
addSubview(focusImageView)
qrCodeImageView = UIImageView()
qrCodeImageView.contentMode = .scaleAspectFill
addSubview(qrCodeImageView)
}
I want to display a viewfinder for the camera in the centerX of the screen. I don't know why, but on my physical iPhone 13 mini it works perfect, but on my physical iPad Air the viewfinder is out of center, like showing in the images below.
Does someone know why this is happening?
Is there any solution for this?
Thanks!
I think constraints would be a good way of solving this issue rather than laying out views via their frame.
Something like this should be a great start, if not the whole solution. As we only have part of your code, a few assumptions have been made in this answer. Feel free to tweak the constraints as needed.