NSAttributedString adiciona alinhamento de texto

109

Como posso adicionar atributo de alinhamento de texto a um NSAttributedString para centralizar o texto?

Edit: Estou fazendo algo errado? Não parece mudar o alinhamento.

CTParagraphStyleSetting setting;
setting.spec = kCTParagraphStyleSpecifierAlignment;
setting.valueSize = kCTCenterTextAlignment;

CTParagraphStyleSetting settings[1] = {
    {kCTParagraphStyleSpecifierAlignment, sizeof(CGFloat), &setting},           
};

CTParagraphStyleRef paragraph = CTParagraphStyleCreate(settings, sizeof(setting));

NSMutableAttributedString *mutableAttributed = [[NSMutableAttributedString alloc] initWithAttributedString:self.attributedString];
[mutableAttributed addAttributes:[NSDictionary dictionaryWithObjectsAndKeys:(NSObject*)paragraph ,(NSString*) kCTParagraphStyleAttributeName, nil] range:_selectedRange];
aryaxt
fonte

Respostas:

39

Como NSAttributedStringé usado principalmente com Core Text no iOS, você deve usar em CTParagraphStylevez de NSParagraphStyle. Não há variante mutável.

Por exemplo:

CTTextAlignment alignment = kCTCenterTextAlignment;

CTParagraphStyleSetting alignmentSetting;
alignmentSetting.spec = kCTParagraphStyleSpecifierAlignment;
alignmentSetting.valueSize = sizeof(CTTextAlignment);
alignmentSetting.value = &alignment;

CTParagraphStyleSetting settings[1] = {alignmentSetting};

size_t settingsCount = 1;
CTParagraphStyleRef paragraphRef = CTParagraphStyleCreate(settings, settingsCount);
NSDictionary *attributes = @{(__bridge id)kCTParagraphStyleAttributeName : (__bridge id)paragraphRef};
NSAttributedString *attributedString = [[NSAttributedString alloc] initWithString:@"Hello World" attributes:attributes];
omz
fonte
Eu não, eu uso uma biblioteca chamada EGOTextView, ela obtém uma string atribuída
aryaxt
1
Há algo errado com a maneira como você cria seu estilo de parágrafo. Veja o exemplo que adicionei, funcionou no EGOTextView, pelo menos exibia a linha centralizada, mas a coisa parece estar cheia de bugs, a seleção não funciona bem com texto centrado.
omz
Sim, está cheio de bugs, tenho batido minha cabeça no meu keayboard tentando consertar bugs nas últimas 4 semanas. Mas foi um ótimo começo, sem ele eu não saberia por onde começar com meu editor de rich text, obrigado pela sua resposta funcionou para mim.
aryaxt
1
@omz você salvou meu emprego. : D Obrigado
Awais Tariq
1
@bobby: concordo, mas escrevi essa resposta 5 anos atrás e NSParagraphStylenão estava disponível no iOS naquela época.
omz
266
 NSMutableParagraphStyle *paragraphStyle = NSMutableParagraphStyle.new;
 paragraphStyle.alignment                = NSTextAlignmentCenter;

 NSAttributedString *attributedString   = 
[NSAttributedString.alloc initWithString:@"someText" 
                              attributes:
         @{NSParagraphStyleAttributeName:paragraphStyle}];

Swift 4.2

let paragraphStyle: NSMutableParagraphStyle = NSMutableParagraphStyle()
    paragraphStyle.alignment = NSTextAlignment.center

    let attributedString = NSAttributedString(string: "someText", attributes: [NSAttributedString.Key.paragraphStyle : paragraphStyle])
ejkujan
fonte
1
Isso não funciona para NSTextAlignmentJustified. você pode dizer por quê? e como posso definir o alinhamento como justificado?
Sam
1
Nota: a resposta aceita não funcionou para mim no iOS7, embora parecesse 100% correta até onde eu sabia. Esta resposta funcionou corretamente e, claro, é um código muito mais simples :)
Adam
Estou com o mesmo problema relatado por Sam. Está OK para todos os alinhamentos, exceto NSTextAlignmentJustified. É um bug do iOS7?
Matheus Abreu
6
Resolvido. Basta adicionar NSBaselineOffsetAttributeName : @0ao dicionário de atributos.
Matheus Abreu
Obrigado funcionou para mim também, por falar nisso, que diabos é essa sintaxe NSAttributedString.alloc?
klefevre
92

Eu estava procurando o mesmo problema e consegui alinhar o texto ao centro em um NSAttributedString desta maneira:

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc]init] ;
[paragraphStyle setAlignment:NSTextAlignmentCenter];

NSMutableAttributedString *attribString = [[NSMutableAttributedString alloc]initWithString:string];
[attribString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [string length])];
ZeMoon
fonte
1
Esta é a melhor resposta, mas quando fiz esta pergunta, a API usada nesta resposta ainda não estava disponível no iOS
aryaxt
existe alguma maneira de aplicar isso a apenas um determinado intervalo?
nburk
Sim, editando o parâmetro de intervalo. NSMakeRange(0, [string length])Representa a string completa.
ZeMoon
67

Swift 4.0+

let titleParagraphStyle = NSMutableParagraphStyle()
titleParagraphStyle.alignment = .center

let titleFont = UIFont.preferredFont(forTextStyle: UIFontTextStyle.headline)
let title = NSMutableAttributedString(string: "You Are Registered", 
    attributes: [.font: titleFont,    
    .foregroundColor: UIColor.red, 
    .paragraphStyle: titleParagraphStyle])

Swift 3.0+

let titleParagraphStyle = NSMutableParagraphStyle()
titleParagraphStyle.alignment = .center

let titleFont = UIFont.preferredFont(forTextStyle: UIFontTextStyle.headline)
let title = NSMutableAttributedString(string: "You Are Registered", 
    attributes: [NSFontAttributeName:titleFont,    
    NSForegroundColorAttributeName:UIColor.red, 
    NSParagraphStyleAttributeName: titleParagraphStyle])

(resposta original abaixo)

Swift 2.0+

let titleParagraphStyle = NSMutableParagraphStyle()
titleParagraphStyle.alignment = .Center

let titleFont = UIFont.preferredFontForTextStyle(UIFontTextStyleHeadline)
let title = NSMutableAttributedString(string: "You Are Registered",
    attributes:[NSFontAttributeName:titleFont,   
    NSForegroundColorAttributeName:UIColor.redColor(), 
    NSParagraphStyleAttributeName: titleParagraphStyle])
Tommie C.
fonte
Infelizmente não funciona em conjunto com a função draw () de NSAttributedString
Ash
21

Resposta do Swift 4 :

// Define paragraph style - you got to pass it along to NSAttributedString constructor
let paragraphStyle = NSMutableParagraphStyle()
paragraphStyle.alignment = .center

// Define attributed string attributes
let attributes = [NSAttributedStringKey.paragraphStyle: paragraphStyle]

let attributedString = NSAttributedString(string:"Test", attributes: attributes)
George Maisuradze
fonte
2

Em swift 4:

    let paraStyle = NSMutableParagraphStyle.init()
    paraStyle.alignment = .left

    let str = "Test Message"
    let attribute = [NSAttributedStringKey.font: UIFont.boldSystemFont(ofSize: 12)]

    let attrMessage = NSMutableAttributedString(string: str, attributes: attribute)


    attrMessage.addAttribute(kCTParagraphStyleAttributeName as NSAttributedStringKey, value: paraStyle, range: NSMakeRange(0, str.count))
Ashwin G
fonte
off-by-one on range: NSMakeRange (0, str.count)
Martin-Gilles Lavoie
-5
[averagRatioArray addObject:[NSString stringWithFormat:@"When you respond Yes to %@ the average response to    %@ was %0.02f",QString1,QString2,M1]];
[averagRatioArray addObject:[NSString stringWithFormat:@"When you respond No  to %@ the average response to    %@ was %0.02f",QString1,QString2,M0]];

UIFont *font2 = [UIFont fontWithName:@"Helvetica-Bold" size:15];
UIFont *font = [UIFont fontWithName:@"Helvetica-Bold" size:12];

NSMutableAttributedString *str=[[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"When you respond Yes to %@ the average response to %@ was",QString1,QString2]];
[str addAttribute:NSFontAttributeName value:font range:NSMakeRange(0,[@"When you respond Yes to " length])];
[str addAttribute:NSFontAttributeName value:font2 range:NSMakeRange([@"When you respond Yes to " length],[QString1 length])];
[str addAttribute:NSFontAttributeName value:font range:NSMakeRange([QString1 length],[@" the average response to " length])];
[str addAttribute:NSFontAttributeName value:font2 range:NSMakeRange([@" the average response to " length],[QString2 length])];
[str addAttribute:NSFontAttributeName value:font range:NSMakeRange([QString2 length] ,[@" was" length])];
// [str addAttribute:NSFontAttributeName value:font2 range:NSMakeRange(49+[QString1 length]+[QString2 length] ,8)];
[averagRatioArray addObject:[NSString stringWithFormat:@"%@",str]];
Mahendra
fonte
2
Edite sua resposta e formate o código para torná-lo legível.
kleopatra