iOS
NSAttributedString
Zoeken…
Opmerkingen
Een tekenreeks maken met aangepaste kerning (letterafstand)
NSAttributedString
(en de veranderlijke broer NSMutableAttributedString
zus NSMutableAttributedString
) kunt u tekenreeksen maken die complex zijn voor de gebruiker.
Een veel voorkomende toepassing is om dit te gebruiken om een string weer te geven en aangepaste kerning / letterafstand toe te voegen.
Dit zou als volgt worden bereikt (waarbij label een UILabel
), waardoor een andere kerning wordt gegeven voor het woord "kerning"
Snel
var attributedString = NSMutableAttributedString("Apply kerning")
attributedString.addAttribute(attribute: NSKernAttributeName, value: 5, range: NSMakeRange(6, 7))
label.attributedText = attributedString
Doelstelling C
NSMutableAttributedString *attributedString;
attributedString = [[NSMutableAttributedString alloc] initWithString:@"Apply kerning"];
[attributedString addAttribute:NSKernAttributeName value:@5 range:NSMakeRange(6, 7)];
[label setAttributedText:attributedString];
Maak een string met doorgestreepte tekst
Doelstelling C
NSMutableAttributedString *attributeString = [[NSMutableAttributedString alloc] initWithString:@"Your String here"];
[attributeString addAttribute:NSStrikethroughStyleAttributeName
value:@2
range:NSMakeRange(0, [attributeString length])];
Snel
let attributeString: NSMutableAttributedString = NSMutableAttributedString(string: "Your String here")
attributeString.addAttribute(NSStrikethroughStyleAttributeName, value: 2, range: NSMakeRange(0, attributeString.length))
Dan kunt u dit toevoegen aan uw UILabel:
yourLabel.attributedText = attributeString;
Toegeschreven tekenreeksen en vetgedrukte tekst toevoegen 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())]))
Het resultaat ziet eruit als:
De waarde is: Iets dat de gebruiker heeft ingevoerd
Verander de kleur van een woord of string
Doelstelling 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;
Snel
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
Opmerking :
De belangrijkste hier is om een NSMutableAttributedString
en de selector addAttribute:value:range
met het kenmerk NSForegroundColorAttributeName
te gebruiken om een kleur van een stringbereik te wijzigen:
NSMutableAttributedString *attrsString = [[NSMutableAttributedString alloc] initWithAttributedString:label.attributedText];
[attrsString addAttribute:NSForegroundColorAttributeName value:color range:range];
U kunt een andere manier gebruiken om het bereik te krijgen, bijvoorbeeld: NSRegularExpression.
Alle attributen verwijderen
Doelstelling C
NSMutableAttributedString *mutAttString = @"string goes here";
NSRange range = NSMakeRange(0, mutAttString.length);
[mutAttString setAttributes:@{} range:originalRange];
Volgens Apple-documentatie gebruiken we setAttributes
en niet addAttribute
.
Snel
mutAttString.setAttributes([:], range: NSRange(0..<string.length))