美文网首页
iOS教程:属性字符串 (Attributed Strings)

iOS教程:属性字符串 (Attributed Strings)

作者: B_C_H | 来源:发表于2018-03-26 14:36 被阅读17次

    2017-07-24

    作者:Arthur Knopper,原文链接,原文日期:2017-04-04

    译者:Chenghui Bai;校对:Chenghui Bai;定稿:Chenghui Bai

    属性字符串(Attributed Strings)可以为文本设置不同类型的属性,可以一次给一段文本设置多个属性。在本教程中,我们将会为lable中文本的每一个单词设置一个属性。本教程使用的是Xcode8.0 和 iOS 10。

    打开Xcode,创建Single View Application

    image.png

    创建 点击 Next,设置product name 为IOS10AttributedStringsTutorial,然后填写自己的Organization Name 和 Organization Identifier ,语言选择Swift,设备选择iPhone。

    image.png

    打开Storyboard,从控件库(Object Library)拖一个UILable到主视图。点击Storyboard右下角 Auto Layout的Align按钮。填入下图所示约束值,选中"Add 1 Constraint”。

    image.png

    点击Storyboard右下角 Auto Layout的Pin按钮。填入下图所示约束值,选中"Add 1 Constraint”。

    image.png

    打开Assistant Editor 确保ViewController.swift是可见的。按Ctrl键,从Label拖拽到ViewController 类,创建如下图所示的Outlet。

    image.png

    打开ViewController.swift文件,如下代码所示,对viewDidLoad进行修改:

    override func viewDidLoad() {
    
        super.viewDidLoad()
    
        // 1
    
    let string = "Testing Attributed Strings"
    
    let attributedString = NSMutableAttributedString(string: string)
    
        // 2letfirstAttributes:[String:Any] = [NSForegroundColorAttributeName: UIColor.blue, NSBackgroundColorAttributeName: UIColor.yellow, NSUnderlineStyleAttributeName: 1]
    
        letsecondAttributes:[String:Any] = [NSForegroundColorAttributeName: UIColor.red, NSBackgroundColorAttributeName: UIColor.blue, NSStrikethroughStyleAttributeName: 1]
    
        letthirdAttributes:[String:Any] = [NSForegroundColorAttributeName: UIColor.green, NSBackgroundColorAttributeName: UIColor.black, NSFontAttributeName: UIFont.systemFont(ofSize: 40)]
    
        // 3attributedString.addAttributes(firstAttributes, range: NSRange(location: 0, length: 8))
    
        attributedString.addAttributes(secondAttributes, range: NSRange(location: 8, length: 11))
    
        attributedString.addAttributes(thirdAttributes, range: NSRange(location: 19, length: 7))
    
        // 4attributedLabel.attributedText = attributedString
    
    }
    

    1.创建一个普通的字符串,并将其加载到可变属性字符串中。

    2.创建3个字典,带有属性(attributed)的键和值。

    3.将这些属性(attributed)添加到attributedString的子串上(attributedString的某范围)。

    4.最后,把这个属性字符串设置给Lable。

    编译运行,属性字符串实现效果如下:

    image.png

    可以从 github 上下载 IOS10AttributedStringsTutorial 教程的源码。

    相关文章

      网友评论

          本文标题:iOS教程:属性字符串 (Attributed Strings)

          本文链接:https://www.haomeiwen.com/subject/emasaxtx.html