iOS
NSAttributString
Szukaj…
Uwagi
Tworzenie łańcucha o niestandardowym kerningu (odstępy między literami)
NSAttributedString
(i jego zmienne rodzeństwo NSMutableAttributedString
) umożliwia tworzenie ciągów o złożonym wyglądzie dla użytkownika.
Typową aplikacją jest użycie tego do wyświetlenia łańcucha i dodania niestandardowego kerningu / odstępów między literami.
Można to osiągnąć w następujący sposób (gdzie etykieta to UILabel
), dając inne jądro dla słowa „kerning”
Szybki
var attributedString = NSMutableAttributedString("Apply kerning")
attributedString.addAttribute(attribute: NSKernAttributeName, value: 5, range: NSMakeRange(6, 7))
label.attributedText = attributedString
Cel C
NSMutableAttributedString *attributedString;
attributedString = [[NSMutableAttributedString alloc] initWithString:@"Apply kerning"];
[attributedString addAttribute:NSKernAttributeName value:@5 range:NSMakeRange(6, 7)];
[label setAttributedText:attributedString];
Utwórz ciąg z tekstem przekreślonym
Cel C
NSMutableAttributedString *attributeString = [[NSMutableAttributedString alloc] initWithString:@"Your String here"];
[attributeString addAttribute:NSStrikethroughStyleAttributeName
value:@2
range:NSMakeRange(0, [attributeString length])];
Szybki
let attributeString: NSMutableAttributedString = NSMutableAttributedString(string: "Your String here")
attributeString.addAttribute(NSStrikethroughStyleAttributeName, value: 2, range: NSMakeRange(0, attributeString.length))
Następnie możesz dodać to do swojego UILabel:
yourLabel.attributedText = attributeString;
Dołączanie przypisanych ciągów i pogrubionego tekstu w 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())]))
Wynik wygląda następująco:
Wartość: Coś, co wprowadził użytkownik
Zmień kolor słowa lub łańcucha
Cel 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;
Szybki
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
Uwaga :
Najważniejsze jest tutaj użycie NSMutableAttributedString
i selektora addAttribute:value:range
z atrybutem NSForegroundColorAttributeName
aby zmienić kolor zakresu ciągów:
NSMutableAttributedString *attrsString = [[NSMutableAttributedString alloc] initWithAttributedString:label.attributedText];
[attrsString addAttribute:NSForegroundColorAttributeName value:color range:range];
Możesz użyć innego sposobu uzyskania zakresu, na przykład: NSRegularExpression.
Usuwanie wszystkich atrybutów
Cel C
NSMutableAttributedString *mutAttString = @"string goes here";
NSRange range = NSMakeRange(0, mutAttString.length);
[mutAttString setAttributes:@{} range:originalRange];
Zgodnie z Dokumentacją Apple używamy setAttributes
a nie addAttribute
.
Szybki
mutAttString.setAttributes([:], range: NSRange(0..<string.length))