Xcode - Swift - UILabel高度扩展文本

时间:2015-07-29 13:29:32

标签: ios xcode swift uilabel sizetofit

我想根据文字的大小扩展UILabel的高度。

以下是视图控制器的外观,选择了标签:

enter image description here

这是代码(我尝试过一些不同的类似的东西,但这就是我现在所拥有的):

import UIKit

class ViewControllerTEST: UIViewController {

@IBOutlet weak var label: UILabel!

override func viewDidLoad() {
    super.viewDidLoad()


    label.frame = CGRectMake(0, 0, CGRectGetWidth(label.bounds), 0)
    label.numberOfLines = 0
    label.lineBreakMode = .ByWordWrapping
    label.text = "This is a really\nlong string"
    label.setNeedsLayout()
    label.sizeToFit()
    label.frame = CGRectMake(0, 0, CGRectGetWidth(label.bounds), CGRectGetHeight(label.bounds))



}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}


/*
// MARK: - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    // Get the new view controller using segue.destinationViewController.
    // Pass the selected object to the new view controller.
}
*/

}

而且,正如您在此处所看到的,它无法正常工作:

enter image description here

1 个答案:

答案 0 :(得分:6)

不要使用框架,请使用自动布局。向标签添加顶部,前导和尾随约束(我建议在故事板中执行此操作)。只要您lines等于0(您这样做),高度就会自动调整。如果您想在代码中添加约束,您的viewDidLoad将如下所示:

override func viewDidLoad() {
    super.viewDidLoad()
    label.text = "This is a really\nlong string"
    label.setTranslatesAutoresizingMaskIntoConstraints(false)
    view.addSubview(label)
    let views = ["label": label]
    view.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("H:|-[label]-|", options: nil, metrics: nil, views: views))
    view.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("V:|-[label]", options: nil, metrics: nil, views: views))
}