UILabel Allinea il testo al centro


Risposte:


568

Da iOS 6 e versioni successive UITextAlignmentè obsoleto. usoNSTextAlignment

myLabel.textAlignment = NSTextAlignmentCenter;

Versione Swift da iOS 6 e successive

myLabel.textAlignment = .center

8
la versione rapida potrebbe essere semplificata :) myLabel.textAlignment = .Center
aryaxt

1
.center ← lettere minuscole
Lucas

83

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


27
UITextAlignmentè obsoleto da iOS 5. Utilizzare NSTextAlignmentinvece.
Philip007,

Falso, UITextAligment è obsoleto. In UIStringDrawing.h (UIKit) puoi trovare questo codice:// 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);
aramusss

12

Per centrare il testo in un UILabel in Swift (che è mirato per iOS 7+) puoi fare:

myUILabel.textAlignment = .Center

O

myUILabel.textAlignment = NSTextAlignment.Center

8

NB: Secondo il riferimento alla classe UILabel , a partire da iOS 6 questo approccio è ora obsoleto.

Basta usare la textAlignmentproprietà per vedere l'allineamento richiesto usando uno dei UITextAlignmentvalori. ( UITextAlignmentLeft, UITextAlignmentCentero UITextAlignmentRight.)

per esempio: [myUILabel setTextAlignment:UITextAlignmentCenter];

Vedere il riferimento alla classe UILabel per ulteriori informazioni.


6

Utilizzare yourLabel.textAlignment = NSTextAlignmentCenter;per iOS> = 6.0 e yourLabel.textAlignment = UITextAlignmentCenter;per iOS <6.0.





3

In xamarin ios supponiamo che il nome della tua etichetta sia title, quindi procedi come segue

title.TextAlignment = UITextAlignment.Center;

2
La domanda non riguarda Xamarin. Ed UITextAlignmentè deprecato in iOS 6 !
FelixSFD

0

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)
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.