iOS 7 sizeWithAttributes: sostituzione di sizeWithFont: vincoloToSize


132

Come si restituisce un formato CGS di testo multilinea dal nuovo metodo iOS 7 sizeWithAttributes?

Mi piacerebbe che questo producesse gli stessi risultati di sizeWithFont: boundinedToSize.

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] }];

Questo metodo produce solo l'altezza per una singola riga di testo.


Date un'occhiata a questo: stackoverflow.com/questions/18673176/...

6
+1 per avere lo stesso carattere di me :)
Lescai Ionel

Risposte:


293

bene puoi provare questo:

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
Per la prima volta vedo questa notazione per i dizionari @{...}. Come si chiama?
Martin Berger,

4
Fratello, stavo quasi perdendo la fiducia in SO, poi sono venuto qui.
NSPunk,

21
Wow. Molto più ottuso rispetto al sizeWithFont:constrainedToSize:metodo originale che è stato deprecato. Apple deve davvero odiarci. In ogni caso, +1.
aroth

1
Perché usi MAXFLOATinvece di CGFLOAT_MAX?
Julian F. Weinert,

19
Versione rapida:var size = textToMeasure.boundingRectWithSize( CGSizeMake(width, CGFloat.max), options: NSStringDrawingOptions.UsesLineFragmentOrigin, attributes:attrs, context:nil).size
mdziadkowiec,

23

Ecco come l'ho fatto:

    // 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
Questo non funzionerà se una lunga stringa dovesse interrompersi alla fine della riga. Fare riferimento alla risposta di elio.d, che è corretta.
Julian F. Weinert,

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

Ecco il mio metodo per affrontare entrambe le situazioni, rientra in una NSStringcategoria.

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

3

Per 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

Se hai il testo, il carattere, il numero di file e la larghezza del set di etichette, questo metodo restituisce le dimensioni dell'etichetta:

myLabel.numberOfLines = 0;

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

1

In alternativa, se stai guardando UITextView, puoi sempre usare il NSLayoutManagermetodo:

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

Puoi anche trovare l'altezza della linea per un determinato carattere:

UIFont *font;
CGFloat lineHeight = font.lineHeight;

0

[Come nuovo utente, non posso pubblicare un commento alla risposta di @ testing, ma per rendere più utile la sua risposta (per xamarin.ios)]

Siamo in grado di restituire un CGRect e utilizzare solo il parametro height per l'oggetto gui che stiamo prendendo di mira UIButton ecc. Inserendo tutti i parametri di cui abbiamo bisogno come di seguito

    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
                                            );

Questo in realtà doveva essere sotto il bel codice del test per Xamarin.IOS :) Spero che possa aiutare chiunque :)
Matt,

Quando hai più rappresentanti, in genere un commento come questo viene aggiunto al post. Non puoi ancora farlo, quindi grazie per ulteriori dati e benvenuto in 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));

utilizzare il ceilfmetodo per gestire correttamente

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.