Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS - How to use `NSMutableString` in swift

I have seen this Objective-C code but I'm struggling to do the same in swift:

NSMutableAttributedString *res = [self.richTextEditor.attributedText mutableCopy];

[res beginEditing];
__block BOOL found = NO;
[res enumerateAttribute:NSFontAttributeName inRange:NSMakeRange(0, res.length) options:0 usingBlock:^(id value, NSRange range, BOOL *stop) {
    if (value) {
        UIFont *oldFont = (UIFont *)value;
        UIFont *newFont = [oldFont fontWithSize:oldFont.pointSize * 2];
        [res removeAttribute:NSFontAttributeName range:range];
        [res addAttribute:NSFontAttributeName value:newFont range:range];
        found = YES;
    }
}];
if (!found) {
    // No font was found - do something else?
}
[res endEditing];
self.richTextEditor.attributedText = res;

I'm trying to change the fonts in a NSMutableAttributedString by iterating over each of the attributes. I'm more than happy to hear that there is a better way but if anyone can help me translate the above I'd be more than greatful.

like image 588
Steve Gailey Avatar asked Dec 20 '22 10:12

Steve Gailey


1 Answers

Here's a basic implementation. It seemed pretty straightforward to me, and you didn't provide your attempt, so I'm not sure if you have something similar and there's a problem with it, or if you're just new to Swift.

One difference is that this implementation uses optional casting (as?), which I did to demonstrate the concept. In practice, this doesn't need to be optional since NSFontAttributeName is guaranteed to provide a UIFont.

var res : NSMutableAttributedString = NSMutableAttributedString(string: "test");

res.beginEditing()

var found = false

res.enumerateAttribute(NSFontAttributeName, inRange: NSMakeRange(0, res.length), options: NSAttributedStringEnumerationOptions(0)) { (value, range, stop) -> Void in
    if let oldFont = value as? UIFont {
        let newFont = oldFont.fontWithSize(oldFont.pointSize * 2)
        res.removeAttribute(NSFontAttributeName, range: range)
        res.addAttribute(NSFontAttributeName, value: newFont, range: range)
        found = true
    }
}

if found == false {

}

res.endEditing()
like image 60
Aaron Brager Avatar answered Dec 24 '22 03:12

Aaron Brager