iOS
NSAttributedString
Suche…
Bemerkungen
Erstellen einer Zeichenfolge mit benutzerdefiniertem Kerning (Buchstabenabstand)
NSAttributedString
(und seinem veränderlichen Geschwister NSMutableAttributedString
) können Sie Strings erstellen, die in ihrem Erscheinungsbild für den Benutzer komplex sind.
Eine gebräuchliche Anwendung besteht darin, eine Zeichenfolge anzuzeigen und benutzerdefinierte Kern- / Buchstabenabstände hinzuzufügen.
Dies würde folgendermaßen erreicht werden (wobei label ein UILabel
), was für das Wort "Kerning" ein anderes Kerning ergibt.
Schnell
var attributedString = NSMutableAttributedString("Apply kerning")
attributedString.addAttribute(attribute: NSKernAttributeName, value: 5, range: NSMakeRange(6, 7))
label.attributedText = attributedString
Ziel c
NSMutableAttributedString *attributedString;
attributedString = [[NSMutableAttributedString alloc] initWithString:@"Apply kerning"];
[attributedString addAttribute:NSKernAttributeName value:@5 range:NSMakeRange(6, 7)];
[label setAttributedText:attributedString];
Erstellen Sie eine Zeichenfolge mit durchgestrichenem Text
Ziel c
NSMutableAttributedString *attributeString = [[NSMutableAttributedString alloc] initWithString:@"Your String here"];
[attributeString addAttribute:NSStrikethroughStyleAttributeName
value:@2
range:NSMakeRange(0, [attributeString length])];
Schnell
let attributeString: NSMutableAttributedString = NSMutableAttributedString(string: "Your String here")
attributeString.addAttribute(NSStrikethroughStyleAttributeName, value: 2, range: NSMakeRange(0, attributeString.length))
Dann können Sie dies zu Ihrem UILabel hinzufügen:
yourLabel.attributedText = attributeString;
Attributierte Zeichenfolgen und fetten Text in Swift anhängen
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())]))
Das Ergebnis sieht so aus:
Der Wert ist: Etwas, das der Benutzer eingegeben hat
Ändern Sie die Farbe eines Wortes oder einer Zeichenfolge
Ziel 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;
Schnell
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
Hinweis :
Das wichtigste hier ist die Verwendung eines NSMutableAttributedString
und des Selektors addAttribute:value:range
mit dem Attribut NSForegroundColorAttributeName
, um die Farbe eines NSForegroundColorAttributeName
zu ändern:
NSMutableAttributedString *attrsString = [[NSMutableAttributedString alloc] initWithAttributedString:label.attributedText];
[attrsString addAttribute:NSForegroundColorAttributeName value:color range:range];
Sie können den Bereich auch auf andere Weise abrufen, z. B. NSRegularExpression.
Alle Attribute entfernen
Ziel c
NSMutableAttributedString *mutAttString = @"string goes here";
NSRange range = NSMakeRange(0, mutAttString.length);
[mutAttString setAttributes:@{} range:originalRange];
setAttributes
Apple-Dokumentation verwenden wir setAttributes
und nicht addAttribute
.
Schnell
mutAttString.setAttributes([:], range: NSRange(0..<string.length))