zoukankan      html  css  js  c++  java
  • button添加链接的title显示效果代码

    -(void)setLinks

    {

        NSString *text = @"Privacy Policy.";

        NSMutableAttributedString * attributedText = [[NSMutableAttributedString alloc] initWithString: text];

        NSRange range = NSMakeRange(0, [attributedText length]);

        [attributedText beginEditing];

        // next make the text appear with an underline

        NSRange underLineRange = range;

        range.length -= 1;

        [attributedText addAttribute: NSUnderlineStyleAttributeName value:[NSNumber numberWithInt:NSSingleUnderlineStyle] range:underLineRange];

        [attributedText addAttribute:NSFontAttributeName value:PRDefaultFontWithSize(NO, 12) range:range];

        [attributedText addAttribute:NSForegroundColorAttributeName value:[NSColor colorWithDeviceRed:237/255.0 green:187/255.0 blue:112/255.0 alpha:1] range:underLineRange];

        [attributedText addAttribute:NSForegroundColorAttributeName value:[NSColor colorWithDeviceRed:128/255.0 green:128/255.0 blue:128/255.0 alpha:1]range:NSMakeRange([attributedText length]-1, 1)];

        [attributedText endEditing];

        [self.linkBtn setAttributedTitle:attributedText];

        [attributedText addAttribute:NSForegroundColorAttributeName value:[NSColor colorWithDeviceRed:128/255.0 green:128/255.0 blue:128/255.0 alpha:1] range:range];

        [self.linkBtn setAttributedAlternateTitle:attributedText];

        [self.linkBtn setToolTip:@"http://www.cisdem.com/about/privacy-policy.html"];

    }

    -(IBAction)privacyPolicyLinks:(id)sender

    {

         [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.cisdem.com/about/privacy-policy.html"]];

    }

  • 相关阅读:
    使用Sed抽取MySQL安装文档的目录及行号
    [MySQL]关于Com_状态
    [译]理解对象存储如何工作
    [译]OpenStack Object Storage Monitoring
    通过设置swift中container的ACL提供匿名访问及用户授权读取服务
    使用swift命令遭遇503错误
    swift-get-nodes简单使用
    修改虚拟硬盘的大小
    php-fpm重启
    Windows学习"Network Analysis in Python"
  • 原文地址:https://www.cnblogs.com/PJXWang/p/5816655.html
Copyright © 2011-2022 走看看