回答:
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);
self.yourLabel.intrinsicContentSize
これにより、ラベルコンテンツのサイズが得られるので、そこから幅を取得できます。
yourLabel.intrinsicContentSize.width
下記の偉大な、チェック答えを動作します。
yourLabel.intrinsicContentSize.width
以下のためのObjective-C /スウィフト
選択された答えは、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でそれを使用する人々の助けになるだろう。
iOS8では、sizeWithFontは非推奨になりました。
CGSize yourLabelSize = [yourLabel.text sizeWithAttributes:@{NSFontAttributeName : [UIFont fontWithName:yourLabel.font size:yourLabel.fontSize]}];
必要なすべての属性をsizeWithAttributesに追加できます。設定できるその他の属性:
- NSForegroundColorAttributeName
- NSParagraphStyleAttributeName
- NSBackgroundColorAttributeName
- NSShadowAttributeName
等々。しかし、おそらくあなたは他の人を必要としないでしょう
制約を使用している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
CGRect rect = label.frame;
rect.size = [label.text sizeWithAttributes:@{NSFontAttributeName : [UIFont fontWithName:label.font.fontName size:label.font.pointSize]}];
label.frame = rect;
アーロンのリンクを含む他の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でより動的なビューが必要な場合は、他の場所に行く前にすぐに試す必要があります。私はすでにあなたのためにすべての仕事をしました!!
[yourString boundingRectWithSize:maximumLabelSize options:NSStringDrawingUsesLineFragmentOrigin attributes:@{ NSFontAttributeName:yourLabel.font } context:nil];