Comment aligner le texte UILabel
?
Comment aligner le texte UILabel
?
Réponses:
À partir d' iOS 6 et UITextAlignment
versions ultérieures est obsolète. utilisationNSTextAlignment
myLabel.textAlignment = NSTextAlignmentCenter;
Version Swift d'iOS 6 et versions ultérieures
myLabel.textAlignment = .center
Voici un exemple de code montrant comment aligner du texte à l'aide d'UILabel:
label = [[UILabel alloc] initWithFrame:CGRectMake(60, 30, 200, 12)];
label.textAlignment = NSTextAlignmentCenter;
Vous pouvez en savoir plus ici UILabel
UITextAlignment
est obsolète depuis iOS 5. Utilisez NSTextAlignment
plutôt.
// 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);
NB: Selon la référence de la classe UILabel , depuis iOS 6, cette approche est désormais obsolète.
Utilisez simplement la textAlignment
propriété pour voir l'alignement requis en utilisant l'une des UITextAlignment
valeurs. ( UITextAlignmentLeft
, UITextAlignmentCenter
ou UITextAlignmentRight
.)
par exemple: [myUILabel setTextAlignment:UITextAlignmentCenter];
Voir la référence de classe UILabel pour plus d'informations.
Utiliser yourLabel.textAlignment = NSTextAlignmentCenter;
pour iOS> = 6.0 et yourLabel.textAlignment = UITextAlignmentCenter;
pour iOS <6.0.
Pour Swift 3, c'est:
label.textAlignment = .center
IO6.1
[lblTitle setTextAlignment:NSTextAlignmentCenter];
Label.textAlignment = NSTextAlignmentCenter;
Dans xamarin ios, supposez que le nom de votre étiquette est le titre, puis procédez comme suit
title.TextAlignment = UITextAlignment.Center;
UITextAlignment
est déconseillé dans iOS 6 !
Dans Swift 4.2 et 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)