テキストの長さに基づいてUILabelの幅を計算する方法は?


142

UILabelの横に画像を表示したいのですが、UILabelのテキスト長は可変なので、画像をどこに配置すればよいかわかりません。どうすればこれを達成できますか?

回答:


191
CGSize expectedLabelSize = [yourString sizeWithFont:yourLabel.font 
                        constrainedToSize:maximumLabelSize 
                        lineBreakMode:yourLabel.lineBreakMode]; 

-[NSString sizeWithFont:forWidth:lineBreakMode:]は何に適していますか?

この質問にはあなたの答えがあるかもしれません、それは私のために働いた。


2014年は、以下のNorbertによる非常に便利なコメントに基づいて、この新しいバージョンで編集しました。これはすべてを行います。乾杯

// yourLabel is your UILabel.

float widthIs = 
 [self.yourLabel.text
  boundingRectWithSize:self.yourLabel.frame.size                                           
  options:NSStringDrawingUsesLineFragmentOrigin
  attributes:@{ NSFontAttributeName:self.yourLabel.font }
  context:nil]
   .size.width;

NSLog(@"the width of yourLabel is %f", widthIs);

41
ただ注意:これはiOS7から非推奨です。今好ましい方法は次のとおりです。[yourString boundingRectWithSize:maximumLabelSize options:NSStringDrawingUsesLineFragmentOrigin attributes:@{ NSFontAttributeName:yourLabel.font } context:nil];
ノルベルト

17
IntrinsicContentSizeプロパティを使用することもできます。私はObjective-cにはあまり詳しくありませんが、次のようなものにする必要があります。self.yourLabel.intrinsicContentSize これにより、ラベルコンテンツのサイズが得られるので、そこから幅を取得できます。
ボリス14

1
ただ、yourLabel.intrinsicContentSize.width下記の偉大な、チェック答えを動作します。
denis_lor

155

yourLabel.intrinsicContentSize.width以下のためのObjective-C /スウィフト


私にとってはうまくいきません。テキストに基づいてラベルの幅の高さを計算していません
Chandni

1
カスタムフォントを使用しても、完全に機能します。
fl034 2018

1
ダイナミックラベルの幅を取得するための完璧な答え
Chetan

52

迅速に

 yourLabel.intrinsicContentSize().width 

3
この回答は、レイアウトされたビューに対してのみ有効です
rommex

33

選択された答えは、iOS 6以前では正しいです。

iOSの7で、sizeWithFont:constrainedToSize:lineBreakMode:されている非推奨。今すぐ使用することをお勧めしますboundingRectWithSize:options:attributes:context:

CGRect expectedLabelSize = [yourString boundingRectWithSize:sizeOfRect
                                                    options:<NSStringDrawingOptions>
                                                 attributes:@{
                                                    NSFontAttributeName: yourString.font
                                                    AnyOtherAttributes: valuesForAttributes
                                                 }
                                                    context:(NSStringDrawingContext *)];

戻り値はでCGRectないことに注意してくださいCGSize。うまくいけば、それがiOS 7でそれを使用する人々の助けになるだろう。


12

iOS8では、sizeWithFontは非推奨になりました。

CGSize yourLabelSize = [yourLabel.text sizeWithAttributes:@{NSFontAttributeName : [UIFont fontWithName:yourLabel.font size:yourLabel.fontSize]}];

必要なすべての属性をsizeWithAttributesに追加できます。設定できるその他の属性:

- NSForegroundColorAttributeName
- NSParagraphStyleAttributeName
- NSBackgroundColorAttributeName
- NSShadowAttributeName

等々。しかし、おそらくあなたは他の人を必要としないでしょう


10

制約を使用しているSwift 4 Answer

label.text = "Hello World"

var rect: CGRect = label.frame //get frame of label
rect.size = (label.text?.size(attributes: [NSFontAttributeName: UIFont(name: label.font.fontName , size: label.font.pointSize)!]))! //Calculate as per label font
labelWidth.constant = rect.width // set width to Constraint outlet

制約を使用しているSwift 5 Answer

label.text = "Hello World"

var rect: CGRect = label.frame //get frame of label
rect.size = (label.text?.size(withAttributes: [NSAttributedString.Key.font: UIFont(name: label.font.fontName , size: label.font.pointSize)!]))! //Calculate as per label font
labelWidth.constant = rect.width // set width to Constraint outlet

1
すごい!テキストに従ってUIButtonの幅を計算するのに便利です。ここでは、intrinsicContentSize.widthが常に正しく機能するとは限りません。
nomnom

8
CGRect rect = label.frame;
rect.size = [label.text sizeWithAttributes:@{NSFontAttributeName : [UIFont fontWithName:label.font.fontName size:label.font.pointSize]}];
label.frame = rect;

2
これは質問に対する答えを提供しません。批評したり、著者に説明を要求したりするには、投稿の下にコメントを残します。自分の投稿にはいつでもコメントできます。十分な評判得られれ、どの投稿にもコメントできます。
Humble Rat

この回答は、テキストに応じてラベルサイズを調整する方法を示しています。これの問題は何ですか?
Honey Lakhani 2015

2

アーロンのリンクを含む他のSOの投稿にいくつかの原則を適用した後、私が思いついたものは次のとおりです。

    AnnotationPin *myAnnotation = (AnnotationPin *)annotation;

    self = [super initWithAnnotation:myAnnotation reuseIdentifier:reuseIdentifier];
    self.backgroundColor = [UIColor greenColor];
    self.frame = CGRectMake(0,0,30,30);
    imageView = [[UIImageView alloc] initWithImage:myAnnotation.THEIMAGE];
    imageView.frame = CGRectMake(3,3,20,20);
    imageView.layer.masksToBounds = NO;
    [self addSubview:imageView];
    [imageView release];

    CGSize titleSize = [myAnnotation.THETEXT sizeWithFont:[UIFont systemFontOfSize:12]];
    CGRect newFrame = self.frame;
    newFrame.size.height = titleSize.height + 12;
    newFrame.size.width = titleSize.width + 32;
    self.frame = newFrame;
    self.layer.borderColor = [UIColor colorWithRed:0 green:.3 blue:0 alpha:1.0f].CGColor;
    self.layer.borderWidth = 3.0;

    UILabel *infoLabel = [[UILabel alloc] initWithFrame:CGRectMake(26,5,newFrame.size.width-32,newFrame.size.height-12)];
    infoLabel.text = myAnnotation.title;
    infoLabel.backgroundColor = [UIColor clearColor];
    infoLabel.textColor = [UIColor blackColor];
    infoLabel.textAlignment = UITextAlignmentCenter;
    infoLabel.font = [UIFont systemFontOfSize:12];

    [self addSubview:infoLabel];
    [infoLabel release];

この例では、テキストサイズに応じてUILabelのサイズを変更するMKAnnotationクラスにカスタムピンを追加しています。また、ビューの左側に画像を追加するため、画像とパディングを処理するための適切な間隔を管理するコードの一部が表示されます。

重要なのはCGSize titleSize = [myAnnotation.THETEXT sizeWithFont:[UIFont systemFontOfSize:12]];、ビューの寸法を使用して再定義することです。このロジックはどのビューにも適用できます。

Aaronの回答は一部で機能しましたが、私には機能しませんでした。これははるかに詳細な説明です。画像とサイズ変更可能なUILabelでより動的なビューが必要な場合は、他の場所に行く前にすぐに試す必要があります。私はすでにあなたのためにすべての仕事をしました!!

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.