是否可以在ViewController文件之外设置约束和对象?

时间:2017-11-04 04:24:48

标签: ios swift xcode

我不习惯使用故事板进行编程。我想要做的是移动负责初始化UIView和约束的代码,从那里我也想把它们放在另一个文件中。

理想情况下,我想打个电话

view.addSubview(loginControllerObjects(frame:view.frame))

从我的viewDidLoad()调用该单独的文件并在适当的位置设置对象,以保持我的ViewController杂乱无章。

我已经解决了大部分问题,但似乎我的函数setUpInputContainer()正在给我“以NSException类型的未捕获异常终止”错误。建议由于其锚点引用不同视图层次结构中的项目。有谁知道如何解决这个问题?

应用代表

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {

    window = UIWindow(frame: UIScreen.main.bounds)

    let homeViewController = ViewController()
    window?.rootViewController = UINavigationController(rootViewController: homeViewController)
    window!.makeKeyAndVisible()

    return true

}

查看控制器

class ViewController: UIViewController {

override func viewDidLoad() {
    super.viewDidLoad()
    self.navigationController?.isNavigationBarHidden = true
    view.addSubview(loginControllerContraints(frame: view.frame))
}

}

extension UIColor {
    convenience init(r: CGFloat, g: CGFloat, b: CGFloat) {
        self.init(red: r/255, green: g/255, blue: b/255, alpha: 1)
    }
}

LoginControllerContraints

class loginControllerContraints: UIView {

override init(frame: CGRect) {
    super.init(frame: frame)

    backgroundColor = UIColor(r: 61, g: 91, b: 151)
    setUpInputContainer()
    addSubview(inputsContainerView)

}

let inputsContainerView: UIView = {
    let view = UIView()
    let red = UIColor.red
    view.backgroundColor = UIColor.white
    view.translatesAutoresizingMaskIntoConstraints = false
    view.layer.cornerRadius = 5
    view.layer.backgroundColor = red.cgColor
    view.layer.masksToBounds = true
    return view
}()

var inputsContainerViewHeightAnchor: NSLayoutConstraint?

func setUpInputContainer() {
    //Needs x, y, height, and width constraints for INPUTCONTAINER
    inputsContainerView.centerXAnchor.constraint(equalTo: centerXAnchor).isActive = true
    inputsContainerView.centerYAnchor.constraint(equalTo: centerYAnchor).isActive = true
    inputsContainerView.widthAnchor.constraint(equalTo: widthAnchor, constant: -24).isActive = true
    inputsContainerViewHeightAnchor = inputsContainerView.heightAnchor.constraint(equalToConstant: 150)
    inputsContainerViewHeightAnchor?.isActive = true


}

//Required do not touch
required init?(coder aDecoder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
}


}

1 个答案:

答案 0 :(得分:0)

问题是您在setUpInputContainer添加inputsContainerView之前致电loginControllerContraints

要解决此问题,请在添加inputsContainerView的任何约束之前将loginControllerContraints添加到inputsContainerView。使用以下代码替换init的{​​{1}}方法。

loginControllerContraints