iOS 7 sizeWithAttributes: การแทนที่ sizeWithFont: constrainedToSize


133

คุณส่งคืน CGSize ข้อความหลายบรรทัดจากเมธอด sizeWithAttributes ของ iOS 7 ใหม่ได้อย่างไร

ฉันต้องการให้ผลลัพธ์เช่นเดียวกับ sizeWithFont: constrainedToSize

NSString *text = @"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus eu urna quis lacus imperdiet scelerisque a nec neque. Mauris eget feugiat augue, vitae porttitor mi. Curabitur vitae sollicitudin augue. Donec id sapien eros. Proin consequat tellus in vehicula sagittis. Morbi sed felis a nibh hendrerit hendrerit. Lorem ipsum dolor sit."

CGSize textSize = [text sizeWithAttributes:@{ NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Light" size:16.0] }];

วิธีนี้สร้างความสูงสำหรับข้อความบรรทัดเดียวเท่านั้น



6
+1 สำหรับการมีแบบอักษรเดียวกับฉัน :)
Lescai Ionel

คำตอบ:


294

คุณสามารถลองสิ่งนี้:

NSDictionary *attributes = @{NSFontAttributeName: [UIFont fontWithName:@"HelveticaNeue" size:14]};
// NSString class method: boundingRectWithSize:options:attributes:context is
// available only on ios7.0 sdk.
CGRect rect = [textToMeasure boundingRectWithSize:CGSizeMake(width, CGFLOAT_MAX)
                                          options:NSStringDrawingUsesLineFragmentOrigin
                                       attributes:attributes
                                          context:nil];

4
@{...}เป็นครั้งแรกที่ฉันเห็นเครื่องหมายนี้สำหรับพจนานุกรม มันเรียกว่าอะไร?
Martin Berger

4
พี่ฉันเกือบจะหมดศรัทธาใน SO แล้วฉันก็มาที่นี่
NSPunk

21
ว้าว. ป้านมากกว่าsizeWithFont:constrainedToSize:วิธีเดิมที่เลิกใช้ไปมาก แอปเปิ้ลต้องเกลียดเราจริงๆ ไม่ว่าในกรณีใด ๆ +1
aroth

1
ทำไมคุณถึงใช้MAXFLOATแทนCGFLOAT_MAX?
Julian F.Winert

19
เวอร์ชัน Swift:var size = textToMeasure.boundingRectWithSize( CGSizeMake(width, CGFloat.max), options: NSStringDrawingOptions.UsesLineFragmentOrigin, attributes:attrs, context:nil).size
mdziadkowiec

23

นี่คือวิธีที่ฉันทำ:

    // Get a font to draw it in
UIFont *font = [UIFont boldSystemFontOfSize: 28];

CGRect textRect;
NSDictionary *attributes = @{NSFontAttributeName: font};

// How big is this string when drawn in this font?
textRect.size = [text sizeWithAttributes:attributes];

// Draw the string
[text drawInRect:textRect withAttributes:attributes];

2
วิธีนี้จะใช้ไม่ได้หากสตริงยาวควรจะขาดที่ท้ายบรรทัด อ้างถึงคำตอบของ elio.d ซึ่งถูกต้อง
Julian F.Winert

4

Swift 2.3:

let attributes = [NSFontAttributeName:UIFont(name: "HelveticaNeue", size: 14)]
let rect = NSString(string: textToMeasure).boundingRectWithSize(
        CGSizeMake(width, CGFLOAT_MAX), 
        options: NSStringDrawingOptions.UsesLineFragmentOrigin, 
        attributes: attributes, context: nil)

Swift 4:

let attributes = [NSFontAttributeName:UIFont(name: "HelveticaNeue", size: 14)]
let rect = NSString(string: textToMeasure).boundingRect(
                    with: CGSize(width: width, height: CGFloat.greatestFiniteMagnitude),
                    options: NSStringDrawingOptions.usesLineFragmentOrigin,
                    attributes: attributes as [NSAttributedString.Key : Any], context: nil)

3

นี่คือวิธีการของฉันในการจัดการกับทั้งสองสถานการณ์อยู่ในNSStringหมวดหมู่

- (CGSize) sizeWithFontOrAttributes:(UIFont *) font {
    if (IS_IOS7) {
        NSDictionary *fontWithAttributes = @{NSFontAttributeName:font};
        return [self sizeWithAttributes:fontWithAttributes];
    } else {
        return [self sizeWithFont:font];
    }
}

3

สำหรับ Xamarin.iOS:

UIFont descriptionLabelFont =  UIFont.SystemFontOfSize (11);
NSString textToMeasure = (NSString)DescriptionLabel.Text;

CGRect labelRect = textToMeasure.GetBoundingRect (
    new CGSize(this.Frame.Width, nfloat.MaxValue), 
    NSStringDrawingOptions.UsesLineFragmentOrigin, 
    new UIStringAttributes () { Font = descriptionLabelFont }, 
    new NSStringDrawingContext ()
);

2

หากคุณมีข้อความแบบอักษร numberOfLines และความกว้างของชุดป้ายกำกับของคุณวิธีนี้จะส่งคืนขนาดของป้ายกำกับของคุณ:

myLabel.numberOfLines = 0;

CGSize size = [myLabel sizeThatFits:CGSizeMake(myLabel.frame.size.width, CGFLOAT_MAX)];`

1

อีกทางเลือกหนึ่งหากคุณกำลังมองหาUITextViewคุณสามารถใช้NSLayoutManagerวิธีการ:

CGSize textSize = [textView.layoutManager usedRectForTextContainer:textView.textContainer].size;

คุณยังสามารถค้นหาความสูงของบรรทัดสำหรับแบบอักษรที่กำหนดโดย:

UIFont *font;
CGFloat lineHeight = font.lineHeight;

0

[ในฐานะผู้ใช้ใหม่ฉันไม่สามารถโพสต์ความคิดเห็นในคำตอบของ @ testing ได้ แต่เพื่อให้คำตอบของเขา (สำหรับ xamarin.ios) มีประโยชน์มากขึ้น]

เราสามารถส่งคืน CGRect และใช้เฉพาะพารามิเตอร์ความสูงสำหรับรายการ gui ที่เรากำหนดเป้าหมาย UIButton เป็นต้นผ่านพารามิเตอร์ใด ๆ ที่เราต้องการดังต่อไปนี้

    public CGRect GetRectForString(String strMeasure, int fontSize, nfloat guiItemWidth)
    {
        UIFont descriptionLabelFont =  UIFont.SystemFontOfSize (fontSize);
        NSString textToMeasure = (NSString)strMeasure;

        CGRect labelRect = textToMeasure.GetBoundingRect (
            new CGSize(guiItemWidth, nfloat.MaxValue), 
            NSStringDrawingOptions.UsesLineFragmentOrigin, 
            new UIStringAttributes () { Font = descriptionLabelFont }, 
            new NSStringDrawingContext ()
        );

        return labelRect;
    }

        header_Revision.Frame = new CGRect (5
                                            , verticalAdjust
                                            , View.Frame.Width-10
                                            , GetRectForString( header_Revision.Title(UIControlState.Normal)
                                                              , 18
                                                              , View.Frame.Width-10 ).Height
                                            );

นี่ควรจะอยู่ภายใต้รหัสที่ดีของการทดสอบสำหรับ Xamarin.IOS :) หวังว่ามันจะช่วยทุกคน :)
Matt

เมื่อคุณมีตัวแทนมากขึ้นความคิดเห็นเช่นนี้มักจะต่อท้ายโพสต์ คุณยังทำไม่ได้ดังนั้นขอขอบคุณสำหรับข้อมูลเพิ่มเติมและยินดีต้อนรับสู่ Stack Overflow
Stuart Siegler

0
CGSize stringsize = [lbl.text sizeWithAttributes:
                         @{NSFontAttributeName:[UIFont fontWithName:FontProximaNovaRegular size:12.0]}];


CGSize adjustedSize = CGSizeMake(ceilf(stringsize.width), ceilf(stringsize.height));

ใช้ceilfวิธีการจัดการอย่างเหมาะสม

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.