Ho provato tutto ma non riesco a centrare questo testo. Qualcuno può dirmi dove si trova l'errore.Allineamento centro testo attribuito
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]}];
controlla questo link .... può aiutare a .. http://stackoverflow.com/questions/6801856/iphone-nsattributedstring-add-text-alignment –