iOS
NSAttributedString
Buscar..
Observaciones
Creación de una cadena que tiene un kerning personalizado (espaciado entre letras)
NSAttributedString
(y su hermano mutable NSMutableAttributedString
) le permite crear cadenas que son complejas en su apariencia para el usuario.
Una aplicación común es usar esto para mostrar una cadena y agregar un espaciado de letras / kerning personalizado.
Esto se lograría de la siguiente manera (donde label es una UILabel
), dando un kerning diferente para la palabra "kerning"
Rápido
var attributedString = NSMutableAttributedString("Apply kerning")
attributedString.addAttribute(attribute: NSKernAttributeName, value: 5, range: NSMakeRange(6, 7))
label.attributedText = attributedString
C objetivo
NSMutableAttributedString *attributedString;
attributedString = [[NSMutableAttributedString alloc] initWithString:@"Apply kerning"];
[attributedString addAttribute:NSKernAttributeName value:@5 range:NSMakeRange(6, 7)];
[label setAttributedText:attributedString];
Crear una cadena con texto tachado
C objetivo
NSMutableAttributedString *attributeString = [[NSMutableAttributedString alloc] initWithString:@"Your String here"];
[attributeString addAttribute:NSStrikethroughStyleAttributeName
value:@2
range:NSMakeRange(0, [attributeString length])];
Rápido
let attributeString: NSMutableAttributedString = NSMutableAttributedString(string: "Your String here")
attributeString.addAttribute(NSStrikethroughStyleAttributeName, value: 2, range: NSMakeRange(0, attributeString.length))
Entonces puedes agregar esto a tu UILabel:
yourLabel.attributedText = attributeString;
Anexando cadenas atribuidas y texto en negrita en Swift
let someValue : String = "Something the user entered"
let text = NSMutableAttributedString(string: "The value is: ")
text.appendAttributedString(NSAttributedString(string: someValue, attributes: [NSFontAttributeName:UIFont.boldSystemFontOfSize(UIFont.systemFontSize())]))
El resultado se ve como:
El valor es: Algo introducido por el usuario.
Cambiar el color de una palabra o cadena
C objetivo
UIColor *color = [UIColor redColor];
NSString *textToFind = @"redword";
NSMutableAttributedString *attrsString = [[NSMutableAttributedString alloc] initWithAttributedString:yourLabel.attributedText];
// search for word occurrence
NSRange range = [yourLabel.text rangeOfString:textToFind];
if (range.location != NSNotFound) {
[attrsString addAttribute:NSForegroundColorAttributeName value:color range:range];
}
// set attributed text
yourLabel.attributedText = attrsString;
Rápido
let color = UIColor.red;
let textToFind = "redword"
let attrsString = NSMutableAttributedString(string:yourlabel.text!);
// search for word occurrence
let range = (yourlabel.text! as NSString).range(of: textToFind)
if (range.length > 0) {
attrsString.addAttribute(NSForegroundColorAttributeName,value:color,range:range)
}
// set attributed text
yourlabel.attributedText = attrsString
Nota :
El principal aquí es usar un NSMutableAttributedString
y el selector addAttribute:value:range
con el atributo NSForegroundColorAttributeName
para cambiar el color de un rango de cadena:
NSMutableAttributedString *attrsString = [[NSMutableAttributedString alloc] initWithAttributedString:label.attributedText];
[attrsString addAttribute:NSForegroundColorAttributeName value:color range:range];
Podría usar otra forma de obtener el rango, por ejemplo: NSRegularExpression.
Eliminando todos los atributos
C objetivo
NSMutableAttributedString *mutAttString = @"string goes here";
NSRange range = NSMakeRange(0, mutAttString.length);
[mutAttString setAttributes:@{} range:originalRange];
Según la documentación de Apple, usamos setAttributes
y no addAttribute
.
Rápido
mutAttString.setAttributes([:], range: NSRange(0..<string.length))