Domande taggate «nsattributedstring»

Gli oggetti NSAttributedString gestiscono stringhe di caratteri e set di attributi associati (ad esempio, font e crenatura) che si applicano a singoli caratteri o intervalli di caratteri nella stringa. Un'associazione di caratteri e dei loro attributi è chiamata stringa attribuita.

10
Allineamento al centro del testo attribuito
Ho provato di tutto ma non riesco a centrare questo testo. Qualcuno può dirmi dove si trova l'errore. NSMutableParagraphStyle *paragraphStyle = NSMutableParagraphStyle.new; paragraphStyle.alignment = NSTextAlignmentCenter; label.attributedText = [[NSAttributedString alloc] initWithString:cell.EventTitle.text attributes:@{NSForegroundColorAttributeName : [UIColor whiteColor],NSParagraphStyleAttributeName:paragraphStyle,NSBaselineOffsetAttributeName : @0,NSFontAttributeName : [UIFont fontWithName:@"BrandonGrotesque-Black" size:34]}];
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.