当以编程方式添加某些内容时,UIView发生了变化 - Swift

时间:2016-01-18 06:57:28

标签: swift uiview swift2 uicontainerview

我正在为iPad开发应用程序。在这个应用程序中,我使用容器视图控制器和视图控制器。在提出问题之前,让我告诉你它是如何工作的:

enter image description here

我的Swift代码:

import UIKit

class ViewController: UIViewController {

    @IBOutlet var containerView: UIView!

    @IBOutlet var blueView: UIView!

    var frameSize: CGSize!

    override func viewDidLoad() {
        super.viewDidLoad()
    }

    override func viewDidAppear(animated: Bool) {
        frameSize = self.view.frame.size
        containerView.frame.origin = CGPoint(x: frameSize.width - containerView.frame.width, y: 0)

        let deviceSize = CGSize(width: 375, height: 667)

        blueView.frame = CGRect(origin: CGPoint(x: frameSize.width / 2 - deviceSize.width / 2 - containerView.frame.width / 2, y: frameSize.height / 2 - deviceSize.height / 2), size: deviceSize)      

    }

    override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {

        let button = UIButton(frame: CGRect(origin: CGPoint(x: 20, y: 20), size: CGSize(width: 100, height: 50)))
        button.titleLabel?.text = "Button Test"
        button.backgroundColor = .redColor()

        blueView.addSubview(button)

    }

}

我运行它,一切都按预期发生。

enter image description here

问题是,当我触摸屏幕时,在touchesBegan中运行代码。

问题是添加programativamente什么。我无法解决它。我的屏幕看起来像这样:

enter image description here

当我以编程方式添加内容时,我无法确定原点和大小的变化。

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

这是因为选项“使用自动布局”。让禁用来解决问题。

enter image description here