iOS
NSAttributedString
Sök…
Anmärkningar
Skapa en sträng som har anpassad kerning (bokstavsavstånd)
NSAttributedString
(och dess muterbara syskon NSMutableAttributedString
) låter dig skapa strängar som är komplexa i sitt utseende för användaren.
En vanlig applikation är att använda den här för att visa en sträng och lägga till anpassad kerning / bokstavsavstånd.
Detta skulle uppnås enligt följande (där etiketten är en UILabel
), vilket ger en annan kerning för ordet "kerning"
Snabb
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];
Skapa en sträng med genomgående text
Objective-C
NSMutableAttributedString *attributeString = [[NSMutableAttributedString alloc] initWithString:@"Your String here"];
[attributeString addAttribute:NSStrikethroughStyleAttributeName
value:@2
range:NSMakeRange(0, [attributeString length])];
Snabb
let attributeString: NSMutableAttributedString = NSMutableAttributedString(string: "Your String here")
attributeString.addAttribute(NSStrikethroughStyleAttributeName, value: 2, range: NSMakeRange(0, attributeString.length))
Sedan kan du lägga till detta till din UIL-etikett:
yourLabel.attributedText = attributeString;
Lägg till tilldelade strängar och fet text i 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())]))
Resultatet ser ut som:
Värdet är: något som användaren skrev in
Ändra färgen på ett ord eller en sträng
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;
Snabb
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
Obs :
Det huvudsakliga här är att använda en NSMutableAttributedString
och väljaren addAttribute:value:range
med attributet NSForegroundColorAttributeName
att ändra en färg på ett strängområde:
NSMutableAttributedString *attrsString = [[NSMutableAttributedString alloc] initWithAttributedString:label.attributedText];
[attrsString addAttribute:NSForegroundColorAttributeName value:color range:range];
Du kan använda ett annat sätt för att få intervallet, till exempel: NSRegularExpression.
Tar bort alla attribut
Objective-C
NSMutableAttributedString *mutAttString = @"string goes here";
NSRange range = NSMakeRange(0, mutAttString.length);
[mutAttString setAttributes:@{} range:originalRange];
Enligt Apple-dokumentationen använder vi, setAttributes
och inte addAttribute
.
Snabb
mutAttString.setAttributes([:], range: NSRange(0..<string.length))