我有一个UIImageView
,并在其上设置了一系列相互矛盾的约束。
我将其中一些的active
属性设置为true
或false
不同的时间,并且它可以正常运行 - 图像视图始终位于应有的位置。
然而,在另一种方法中,我使用它的帧来计算另一个视图的位置,所以我注意到它的帧不是图像视图出现的位置。例如,图像视图显示在屏幕中间的中心,但是它的框架(我创建了另一个UIView并将其框架设置为图像视图的框架以进行测试),位于左下角 - 图像视图曾经是在更改哪些约束有效之前。
有没有办法可以更新框架,以便它反映图像视图的实际位置?或者,有没有办法获得图像视图的真实框架?
以下是代码(qrCode
是我要安排的视图,myContainer
是其超级视图):
self.qrCode.setTranslatesAutoresizingMaskIntoConstraints(false)
//this sets qrCode 0 pts from the bottom of its parent
self.bottom.active = false
//this centers qrCode vertically in its parent
self.center.active = true
//these set how far the parent is from the edges of its view
self.newLeft.active = true
self.newRight.active = true
let testView = UIView(frame: qrCode.frame)
testView.backgroundColor = UIColor.greenColor()
self.myContainer.addSubview(testView)
所有这些代码都正确定位了图像视图(qrCode
),但是它的帧(如testView
所示 - 位于错误的位置 - 它是qrCode在配置约束之前的位置。
答案 0 :(得分:1)
以下是答案:
在viewdidload中执行此操作:
@IBOutlet weak var asdf = QQCustomUIViewForQRImageView()
override func viewDidLoad() {
super.viewDidLoad()
var floatiesW = 200 as CGFloat
var floatiesH = 200 as CGFloat
asdf!.frame = CGRectMake((self.view.bounds.width/2.0) - (floatiesW/2.0), (self.view.bounds.height/2.0) - (floatiesH/2.0), floatiesW, floatiesH)
asdf!.qrImageView.image = UIImage(named: "check")
}
根据我们的对话,您需要将UIView用作子类:
import UIKit
class QQCustomUIViewForQRImageView: UIView {
var qrImageView = UIImageView()
override init (frame : CGRect) {
super.init(frame : frame)
}
convenience init () {
self.init(frame:CGRect.zeroRect)
}
override func layoutSubviews() {
super.layoutSubviews()
self.backgroundColor = UIColor.redColor()
qrImageView.setTranslatesAutoresizingMaskIntoConstraints(false)
qrImageView.backgroundColor = UIColor.yellowColor()
self.addSubview(qrImageView)
let views: [NSObject : AnyObject] = [ "qrImageView" : qrImageView]
self.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("H:|-4-[qrImageView]-4-|", options: nil, metrics: nil, views: views))
self.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("V:|-4-[qrImageView]-4-|", options: nil, metrics: nil, views: views))
}
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
}
每侧有4个点,这将为您调整大小,并且iamgeview设置为我在视图中显示的图像上面加载调用