我正在使用XCode 6.1而我正在尝试向TextView添加约束。我已经通过将这些代码行添加到我的ViewController的viewDidLoad()函数中来成功完成它:
myButton.backgroundColor = UIColor.orangeColor()
myButton.setTitle("New test old button", forState: .Normal)
self.view.addSubview(myButton)
myButton.setTranslatesAutoresizingMaskIntoConstraints(false)
self.view.addConstraint(NSLayoutConstraint(item: myButton, attribute: .Leading, relatedBy: .Equal, toItem: self.view, attribute: .Leading, multiplier: 1.0, constant: 20.0))
self.view.addConstraint(NSLayoutConstraint(item: myButton, attribute: .Top, relatedBy: .Equal, toItem: self.view, attribute: .Top, multiplier: 1.0, constant: 200.0))
但是当我尝试使用TextView时,我无法在iOS模拟器的屏幕上看到它:
var textView = UITextView(frame: CGRect(x: 100, y: 100, width: 300, height: 300))
textView.text = "My test text!"
textView.sizeToFit()
textView.backgroundColor = UIColor.purpleColor()
self.view.addSubview(textView)
textView.setTranslatesAutoresizingMaskIntoConstraints(false)
self.view.addConstraint(NSLayoutConstraint(item: textView, attribute: .Leading, relatedBy: .Equal, toItem: self.view, attribute: .Leading, multiplier: 1.0, constant: 10.0))
self.view.addConstraint(NSLayoutConstraint(item: textView, attribute: .Top, relatedBy: .Equal, toItem: self.view, attribute: .Top, multiplier: 1.0, constant: 400.0))
如果我删除三个约束特定行,则会创建TextView,但我需要这些约束才能正确格式化所有内容。
有人知道我做错了吗?
答案 0 :(得分:2)
您需要为文本视图的宽度和高度添加约束:
self.view.addConstraint(NSLayoutConstraint(item: textView, attribute: .Width, relatedBy: .Equal,
toItem: nil, attribute: .NotAnAttribute, multiplier: 1.0, constant: 300.0))
self.view.addConstraint(NSLayoutConstraint(item: textView, attribute: .Height, relatedBy: .Equal,
toItem: nil, attribute: .NotAnAttribute, multiplier: 1.0, constant: 300.0))