• Change the color of a link in an NSMutableAttributedString


    Swift

    Updated for Swift 3

    Use with a textView.linkTextAttributes = [NSForegroundColorAttributeName: UIColor.green]

    And in context:

    let attributedString = NSMutableAttributedString(string: "This is an example by @marcelofabri_")

    let linkRange = (attributedString.string as NSString).range(of: "@marcelofabri_")

    attributedString.addAttribute(NSLinkAttributeName, value: "username://marcelofabri_", range: linkRange)

    let linkAttributes: [String : Any] = [

        NSForegroundColorAttributeName: UIColor.green,

        NSUnderlineColorAttributeName: UIColor.lightGray,

        NSUnderlineStyleAttributeName: NSUnderlineStyle.styleSingle.rawValue]

    // textView is a UITextView

    textView.linkTextAttributes = linkAttributes

    textView.attributedText = attributedString

    textView.delegate = self

    Swift 4:

    let linkAttributes: [String : Any] = [

        NSAttributedStringKey.foregroundColor.rawValue: UIColor.green,

        NSAttributedStringKey.underlineColor.rawValue: UIColor.lightGray,

        NSAttributedStringKey.underlineStyle.rawValue: NSUnderlineStyle.styleSingle.rawValue]

    Objective-C

    Use with a textView.linkTextAttributes = @{NSForegroundColorAttributeName:[UIColor greenColor]};

    Source: this answer

    And from this post:

    NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:@"This is an example by @marcelofabri_"];

    [attributedString addAttribute:NSLinkAttributeName

                             value:@"username://marcelofabri_"

                             range:[[attributedString string] rangeOfString:@"@marcelofabri_"]];

    NSDictionary *linkAttributes = @{NSForegroundColorAttributeName: [UIColor greenColor],

                                     NSUnderlineColorAttributeName: [UIColor lightGrayColor],

                                     NSUnderlineStyleAttributeName: @(NSUnderlineStyleSingle)};

    // assume that textView is a UITextView previously created (either by code or Interface Builder)

    textView.linkTextAttributes = linkAttributes; // customizes the appearance of links

    textView.attributedText = attributedString;

    textView.delegate = self;

     https://stackoverflow.com/questions/28361072/change-the-color-of-a-link-in-an-nsmutableattributedstring

  • 相关阅读:
    C#中虚方法与抽象方法的区别
    关于计算同一个用户购买日期间隔查询语句
    pandas 讲数据分组之后保留前N行方法
    关于Mysql隐式转化及注意事项与cast函数运用
    Mysql 去重
    记一个pandas 分组之后.head()返回的数据问题
    Failed to introspect Class xxxx
    golang 推荐学习记录
    Java内存区域
    Struts2中采用Json返回List对象数据为空解决方案
  • 原文地址:https://www.cnblogs.com/feng9exe/p/9402372.html
Copyright © 2020-2023  润新知