GithubHelp home page GithubHelp logo

Multiline UILabel about pinlayout HOT 6 CLOSED

layoutbox avatar layoutbox commented on May 14, 2024
Multiline UILabel

from pinlayout.

Comments (6)

lucdion avatar lucdion commented on May 14, 2024

Hi @NamtarR, can you share me a piece of your source code?

Normally this should do the trick:

// The size of the smallLabel will be adjusted to the text up to 50% of the space.
smallLabel.pin.bottom().right().maxWidth(50%).fitSize()
// The bigLabel will takes the left remaining space.
bigLabel.pin.bottom().left().before(of: smallLabel).fitSize()

Just be sure that bigLabel.numberOfLines is 0.

from pinlayout.

NamtarR avatar NamtarR commented on May 14, 2024

Sorry for such a long inactivity here.
I have tried something like this, but no luck:

smallLabel.pin.bottom().right().width(72).fitSize()
bigLabel.pin.left().bottom().top().before(of: smallLabel).fitSize()

from pinlayout.

lucdion avatar lucdion commented on May 14, 2024

Can you paste also your controls initialization, or all the file containing this section of code?

from pinlayout.

lucdion avatar lucdion commented on May 14, 2024

@NamtarR did you found a solution?

from pinlayout.

NamtarR avatar NamtarR commented on May 14, 2024

I am sorry for my long replies.

let image = UIImageView()
let footerHolder = UIView()
let title = UILabel()
let expiryDate = UILabel()

override init(frame: CGRect) {
         super.init(frame: frame)
       
         contentView.addSubview(image)
         contentView.addSubview(footerHolder)
         footerHolder.addSubview(title)
         footerHolder.addSubview(expiryDate)
    }

    override func layoutSubviews() {
        super.layoutSubviews()
        image.pin.left().top().right().height(172)
        footerHolder.pin.left().right().below(of: image).bottom()
        expiryDate.pin.bottom(24).right(18).width(68).fitSize()
        title.pin.left(18).before(of: expiryDate).bottom(24).top().fitSize()
    }

This is what I tried and for unknown reasons it did not work though looks fine.

from pinlayout.

lucdion avatar lucdion commented on May 14, 2024

Hi @NamtarR, sorry for the long delay, by default a UILabel is single line, you must set it to multiline using title.numberOfLines = 0 and expiryDate.numberOfLines = 0.

Also, update your code to use sizeToFit(.width) instead of fitSize().

from pinlayout.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.