Como alinhar o texto UILabel
?
Como alinhar o texto UILabel
?
Respostas:
A partir do iOS 6 e posterior, UITextAlignment
esta obsoleta. usarNSTextAlignment
myLabel.textAlignment = NSTextAlignmentCenter;
Versão Swift do iOS 6 e posterior
myLabel.textAlignment = .center
Aqui está um código de exemplo mostrando como alinhar o texto usando o UILabel:
label = [[UILabel alloc] initWithFrame:CGRectMake(60, 30, 200, 12)];
label.textAlignment = NSTextAlignmentCenter;
Você pode ler mais sobre isso aqui UILabel
UITextAlignment
está obsoleto desde o iOS 5. Use em NSTextAlignment
vez disso.
// Deprecated: use NSTextAlignment enum in UIKit/NSText.h typedef NS_ENUM(NSInteger, UITextAlignment) { UITextAlignmentLeft = 0, UITextAlignmentCenter, UITextAlignmentRight, // could add justified in future } NS_DEPRECATED_IOS(2_0,6_0);
Nota: de acordo com a referência da classe UILabel , a partir do iOS 6, essa abordagem agora está obsoleta.
Simplesmente use a textAlignment
propriedade para ver o alinhamento necessário usando um dos UITextAlignment
valores. ( UITextAlignmentLeft
, UITextAlignmentCenter
ou UITextAlignmentRight
.)
por exemplo: [myUILabel setTextAlignment:UITextAlignmentCenter];
Consulte a referência de classe UILabel para obter mais informações.
Use yourLabel.textAlignment = NSTextAlignmentCenter;
para iOS> = 6.0 e yourLabel.textAlignment = UITextAlignmentCenter;
para iOS <6.0.
Para Swift 3 é:
label.textAlignment = .center
IO6.1
[lblTitle setTextAlignment:NSTextAlignmentCenter];
Label.textAlignment = NSTextAlignmentCenter;
No xamarin ios, suponha que o nome do seu rótulo seja título e faça o seguinte
title.TextAlignment = UITextAlignment.Center;
UITextAlignment
está obsoleto no iOS 6 !
No Swift 4.2 e no Xcode 10
let lbl = UILabel(frame: CGRect(x: 10, y: 50, width: 230, height: 21))
lbl.textAlignment = .center //For center alignment
lbl.text = "This is my label fdsjhfg sjdg dfgdfgdfjgdjfhg jdfjgdfgdf end..."
lbl.textColor = .white
lbl.backgroundColor = .lightGray//If required
lbl.font = UIFont.systemFont(ofSize: 17)
//To display multiple lines in label
lbl.numberOfLines = 0
lbl.lineBreakMode = .byWordWrapping
lbl.sizeToFit()//If required
yourView.addSubview(lbl)