Giter Club home page Giter Club logo

Comments (1)

dmiedema avatar dmiedema commented on September 12, 2024

Not sure of the elegance of the solution I thought of two solutions that ideally would work without having to subclass UILabel

  1. inset both sides of the label by image width
  2. ignore image width if text is centered

Not sure how viable they are or if they're even really worth doing, however i threw option 2 in the test project and it seems to work. I just modified CRToast -layoutSubview specifically lines 1053-1088 hold all the changes.

    CGFloat titleLabelX = (imageSize.width == 0 || self.toast.textAlignment == NSTextAlignmentCenter) ? kCRStatusBarViewNoImageLeftContentInset : CGRectGetMaxX(_imageView.frame);
    CGFloat subTitleLabelX = (imageSize.width == 0 || self.toast.subtitleTextAlignment == NSTextAlignmentCenter) ? kCRStatusBarViewNoImageLeftContentInset : CGRectGetMaxX(_imageView.frame);

    CGFloat x = imageSize.width == 0 ? kCRStatusBarViewNoImageLeftContentInset : CGRectGetMaxX(_imageView.frame);
    CGFloat width = CGRectGetWidth(contentFrame)-x-kCRStatusBarViewNoImageRightContentInset;

    if (self.toast.subtitleText == nil) {
        self.label.frame = CGRectMake(titleLabelX,
                                      statusBarYOffset,
                                      width,
                                      CGRectGetHeight(contentFrame));
    } else {
        CGFloat height = MIN([self.toast.text boundingRectWithSize:CGSizeMake(width, MAXFLOAT)
                                                           options:NSStringDrawingUsesLineFragmentOrigin
                                                        attributes:@{NSFontAttributeName : self.toast.font}
                                                           context:nil].size.height,
                             CGRectGetHeight(contentFrame));
        CGFloat subtitleHeight = [self.toast.subtitleText boundingRectWithSize:CGSizeMake(width, MAXFLOAT)
                                                                       options:NSStringDrawingUsesLineFragmentOrigin
                                                                    attributes:@{NSFontAttributeName : self.toast.subtitleFont }
                                                                       context:nil].size.height;
        if ((CGRectGetHeight(contentFrame) - (height + subtitleHeight)) < 5) {
            subtitleHeight = (CGRectGetHeight(contentFrame) - (height))-10;
        }
        CGFloat offset = (CGRectGetHeight(contentFrame) - (height + subtitleHeight))/2;

        self.label.frame = CGRectMake(titleLabelX,
                                      offset+statusBarYOffset,
                                      CGRectGetWidth(contentFrame)-titleLabelX-kCRStatusBarViewNoImageRightContentInset,
                                      height);


        self.subtitleLabel.frame = CGRectMake(subTitleLabelX,
                                              height+offset+statusBarYOffset,
                                              CGRectGetWidth(contentFrame)-subTitleLabelX-kCRStatusBarViewNoImageRightContentInset,
                                              subtitleHeight);
    }

There's probably a better way but ¯\_(ツ)_/¯

from crtoast.

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.