UIView dynamic height depending on Label Height

15,111

Solution 1

you can just do it with storyboard this pics

enter image description here

enter image description here

set the label height relation to greater than or equal

and set the view height relation to greater than or equal

it work like a magic

Solution 2

I know this is late answer, but it might help someone else.

To make the Dynamic height for UIView follow the simple steps in Storyboard

  1. Add a UIView in UIViewController and set your favourite background colour

enter image description here

  1. Now set the following constraints Leading, Top, Trailing and Height(as of now). We can adjust the Height constraint to achieve dynamic height further. enter image description here
  2. Update Height Constraints as shown below: enter image description here
  3. Now probably there storyboard will show you inequality constraint ambiguity. But we are going to fix this now. Just add a label inside UIView as shown enter image description here
  4. Now Set the Constraints for Label Leading, Trailing, Top and Bottom enter image description here
  5. Hurrah, Now the UIView height will increase based on the label's height. just make the following changes to label enter image description here

This technique works with other views inside this UIView. The thing is you must specify bottom constraints for the views present inside this UIView.

Solution 3

Bellow is working solution of your problem. I used autoLayout. In testView you don't set heightAnchor

let testView: UIView = {
    let view = UIView()
    view.translatesAutoresizingMaskIntoConstraints = false
    view.backgroundColor = UIColor.redColor()
    return view
}()

let testLabel: UILabel = {
    let label = UILabel()
    label.numberOfLines = 0
    label.translatesAutoresizingMaskIntoConstraints = false
    label.text = "jashfklhaslkfhaslkjdhflksadhflkasdhlkasdhflkadshkfdsjh"
    return label
}()


override func viewDidLoad() {
    super.viewDidLoad()

    view.addSubview(testView)
    testView.centerXAnchor.constraintEqualToAnchor(view.centerXAnchor).active = true
    testView.centerYAnchor.constraintEqualToAnchor(view.centerYAnchor).active = true
    testView.widthAnchor.constraintEqualToConstant(100).active = true


    testView.addSubview(testLabel)
    testLabel.topAnchor.constraintEqualToAnchor(testView.topAnchor, constant: 10).active = true
    testLabel.leftAnchor.constraintEqualToAnchor(testView.leftAnchor, constant: 10).active = true
    testLabel.bottomAnchor.constraintEqualToAnchor(testView.bottomAnchor, constant: -10).active = true
    testLabel.rightAnchor.constraintEqualToAnchor(testView.rightAnchor, constant: -10).active = true

}

Solution 4

first calculate the size of label with the text it contains, using this function

func calculateSizeOfLabel(text:String,labelWidth:CGFloat,labelFont:UIFont)->CGSize{
        let constrainedSize = CGSizeMake(labelWidth , 9999)

        var attributesDictionary:[String:AnyObject] = [:]

            attributesDictionary = [NSFontAttributeName:labelFont] as [String:AnyObject]



        let string:NSMutableAttributedString = NSMutableAttributedString(string:text, attributes:attributesDictionary)

        var boundingRect = string.boundingRectWithSize(constrainedSize, options:.UsesLineFragmentOrigin, context:nil)

        if (boundingRect.size.width > labelWidth) {
            boundingRect = CGRectMake(0,0, labelWidth, boundingRect.size.height);
        }


    return boundingRect.size
}

and then apply the height of returned size to the UIView like this

    let labelText = description.text
    let labelWidth = description.bounds.width
    let labelFont = description.font
    let calculatedHeight = calculateSizeOfLabel(labelText,labelWidth:labelWidth,labelFont:labelFont).height 
    DescView.frame = CGRectMake(DescView.frame.origin.x, DescView.frame.origin.y, DescView.bounds.width,calculatedHeight)

Solution 5

Below code will resolved your issue :

//Adjust View Height

[yourView setFrame:CGRectMake(yourView.frame.origin.x, yourView.frame.origin.y, yourView.frame.size.width, yourLable.frame.size.height + yourLable.frame.origin.y + extraspace)];
Share:
15,111
Konstantinos Natsios
Author by

Konstantinos Natsios

Hello. My name is Konstantinos and I'm from Greece. Finished my Bachelor at Electronic Engineer at Technological Education Institute of Athens. I also did a full 6 month studies with the Erasmus programm, at Universidade Nova de Lisboa. My passion is web and mobile development. Started with some Chrome Extensions and now I'm working as an iOS Software Engineer @ xm.com

Updated on June 05, 2022

Comments

  • Konstantinos Natsios
    Konstantinos Natsios almost 2 years

    I have a Label which takes dynamicaly some data from database. These data are strings which can sometimes be 3-4-5 rows etc. So this labe is inside a UIView.

    --UIView
      --Label
    

    How can i make the UIView to take the certain height of the Label dynamicaly??