Come allineare il testo UILabel
?
Come allineare il testo UILabel
?
Risposte:
Da iOS 6 e versioni successive UITextAlignment
è obsoleto. usoNSTextAlignment
myLabel.textAlignment = NSTextAlignmentCenter;
Versione Swift da iOS 6 e successive
myLabel.textAlignment = .center
Ecco un codice di esempio che mostra come allineare il testo usando UILabel:
label = [[UILabel alloc] initWithFrame:CGRectMake(60, 30, 200, 12)];
label.textAlignment = NSTextAlignmentCenter;
Puoi leggere di più qui UILabel
UITextAlignment
è obsoleto da iOS 5. Utilizzare NSTextAlignment
invece.
// 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: Secondo il riferimento alla classe UILabel , a partire da iOS 6 questo approccio è ora obsoleto.
Basta usare la textAlignment
proprietà per vedere l'allineamento richiesto usando uno dei UITextAlignment
valori. ( UITextAlignmentLeft
, UITextAlignmentCenter
o UITextAlignmentRight
.)
per esempio: [myUILabel setTextAlignment:UITextAlignmentCenter];
Vedere il riferimento alla classe UILabel per ulteriori informazioni.
Utilizzare yourLabel.textAlignment = NSTextAlignmentCenter;
per iOS> = 6.0 e yourLabel.textAlignment = UITextAlignmentCenter;
per iOS <6.0.
Per Swift 3 è:
label.textAlignment = .center
IO6.1
[lblTitle setTextAlignment:NSTextAlignmentCenter];
Label.textAlignment = NSTextAlignmentCenter;
In xamarin ios supponiamo che il nome della tua etichetta sia title, quindi procedi come segue
title.TextAlignment = UITextAlignment.Center;
UITextAlignment
è deprecato in iOS 6 !
In Swift 4.2 e 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)