¿Cómo alineo el texto UILabel
?
236
Desde iOS 6 y posterior UITextAlignment
está en desuso. utilizarNSTextAlignment
myLabel.textAlignment = NSTextAlignmentCenter;
Versión rápida de iOS 6 y posterior
myLabel.textAlignment = .center
Aquí hay un código de muestra que muestra cómo alinear texto usando UILabel:
Puedes leer más sobre esto aquí UILabel
fuente
UITextAlignment
está en desuso desde iOS 5. Use en suNSTextAlignment
lugar.// 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);
Para centrar el texto en un UILabel en Swift (que está dirigido a iOS 7+) puede hacer lo siguiente:
O
fuente
NB: Según la referencia de clase UILabel , a partir de iOS 6 este enfoque ahora está en desuso.
Simplemente use la
textAlignment
propiedad para ver la alineación requerida usando uno de losUITextAlignment
valores. (UITextAlignmentLeft
,UITextAlignmentCenter
oUITextAlignmentRight
.)p.ej:
[myUILabel setTextAlignment:UITextAlignmentCenter];
Consulte la referencia de clase UILabel para obtener más información.
fuente
Usar
yourLabel.textAlignment = NSTextAlignmentCenter;
para iOS> = 6.0 yyourLabel.textAlignment = UITextAlignmentCenter;
para iOS <6.0.fuente
Para Swift 3 es:
fuente
IO6.1
[lblTitle setTextAlignment:NSTextAlignmentCenter];
fuente
fuente
En xamarin ios, suponga que el nombre de su etiqueta es título y luego haga lo siguiente
fuente
UITextAlignment
está en desuso en iOS 6 !En Swift 4.2 y Xcode 10
fuente