iOS 7 sizeWithAttributes:sizeWithFont:constrainedToSizeの代替


132

新しいiOS 7メソッドsizeWithAttributesからマルチラインテキストCGSizeをどのように返しますか?

これにより、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] }];

このメソッドは、1行のテキストの高さのみを生成します。



6
私と同じフォントを使用している場合は+1 :)
Lescai Ionel

回答:


293

よくあなたはこれを試すことができます:

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 2014

21
ワオ。sizeWithFont:constrainedToSize:廃止された元のメソッドよりもずっと鈍いです。アップルは本当に私たちを憎む必要があります。いずれにせよ、+ 1。
aroth

1
MAXFLOAT代わりになぜ使用するのCGFLOAT_MAXですか?
ジュリアンF.ワイナート2014

19
Swiftバージョン:var size = textToMeasure.boundingRectWithSize( CGSizeMake(width, CGFloat.max), options: NSStringDrawingOptions.UsesLineFragmentOrigin, attributes:attrs, context:nil).size
mdziadkowiec 2015

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の答えを参照してください。これは正しいです。
ジュリアンF.ワイナート2014

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)

スウィフト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を返すことができ、UIButtonなどを対象とするGUIアイテムの高さパラメーターのみを使用します。以下のように、必要なパラメーターを渡します。

    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 2015年

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.