iOS
NSAttributedString
Ricerca…
Osservazioni
Creazione di una stringa con crenatura personalizzata (spaziatura tra lettere)
NSAttributedString
(e il suo fratello mutabile NSMutableAttributedString
) consente di creare stringhe complesse nel loro aspetto all'utente.
Un'applicazione comune è quella di usarlo per visualizzare una stringa e aggiungere crenatura / interlinea personalizzata.
Ciò si otterrebbe come segue (dove label è un UILabel
), dando una diversa crenatura per la parola "kerning"
veloce
var attributedString = NSMutableAttributedString("Apply kerning")
attributedString.addAttribute(attribute: NSKernAttributeName, value: 5, range: NSMakeRange(6, 7))
label.attributedText = attributedString
Objective-C
NSMutableAttributedString *attributedString;
attributedString = [[NSMutableAttributedString alloc] initWithString:@"Apply kerning"];
[attributedString addAttribute:NSKernAttributeName value:@5 range:NSMakeRange(6, 7)];
[label setAttributedText:attributedString];
Crea una stringa con testo barrato
Objective-C
NSMutableAttributedString *attributeString = [[NSMutableAttributedString alloc] initWithString:@"Your String here"];
[attributeString addAttribute:NSStrikethroughStyleAttributeName
value:@2
range:NSMakeRange(0, [attributeString length])];
veloce
let attributeString: NSMutableAttributedString = NSMutableAttributedString(string: "Your String here")
attributeString.addAttribute(NSStrikethroughStyleAttributeName, value: 2, range: NSMakeRange(0, attributeString.length))
Quindi puoi aggiungerlo alla tua UILabel:
yourLabel.attributedText = attributeString;
Aggiunta di archi attribuiti e testo in grassetto in 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())]))
Il risultato è simile a:
Il valore è: Qualcosa che l'utente ha inserito
Cambia il colore di una parola o una stringa
Objective-C
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;
veloce
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 :
Il principale è utilizzare NSMutableAttributedString
e il selettore addAttribute:value:range
con l'attributo NSForegroundColorAttributeName
per modificare un colore di un intervallo di stringhe:
NSMutableAttributedString *attrsString = [[NSMutableAttributedString alloc] initWithAttributedString:label.attributedText];
[attrsString addAttribute:NSForegroundColorAttributeName value:color range:range];
È possibile utilizzare un altro modo per ottenere l'intervallo, ad esempio: NSRegularExpression.
Rimozione di tutti gli attributi
Objective-C
NSMutableAttributedString *mutAttString = @"string goes here";
NSRange range = NSMakeRange(0, mutAttString.length);
[mutAttString setAttributes:@{} range:originalRange];
Come per la documentazione Apple usiamo, setAttributes
e non addAttribute
.
veloce
mutAttString.setAttributes([:], range: NSRange(0..<string.length))