zoukankan      html  css  js  c++  java
  • Swift

    1,标签的创建

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    import UIKit
    class ViewController: UIViewController {
        override func viewDidLoad() {
        super.viewDidLoad()
        //设置标签x坐标:10,y坐标:20,长:300,宽:100
        var label=UILabel(frame:CGRectMake(10,20, 300, 100))
        label.text="hangge.com"
        self.view.addSubview(label);
        }
    }

    2,背景颜色和文字颜色的设置

    1
    2
    label.textColor=UIColor.whiteColor()  //白色文字
    label.backgroundColor=UIColor.blackColor() //黑色背景

    3,对齐方式的设置

    1
    label.textAlignment=NSTextAlignment.Right //文字右对齐

    4,文字阴影的设置

    1
    2
    label.shadowColor=UIColor.grayColor()  //灰色阴影
    label.shadowOffset=CGSizeMake(-5,5)  //阴影的偏移量

    5,字体的设置

    1
    label.font = UIFont(name:"Zapfino", size:20)

    6,文字过长时的省略方式

    1
    2
    3
    4
    label.lineBreakMode=NSLineBreakMode.ByTruncatingTail  //隐藏尾部并显示省略号
    label.lineBreakMode=NSLineBreakMode.ByTruncatingMiddle  //隐藏中间部分并显示省略号
    label.lineBreakMode=NSLineBreakMode.ByTruncatingHead  //隐藏头部并显示省略号
    label.lineBreakMode=NSLineBreakMode.ByClipping  //截去多余部分也不显示省略号

    7,文字大小自适应标签宽度

    1
    label.adjustsFontSizeToFitWidth=true //当文字超出标签宽度时,自动调整文字大小,使其不被截断

    8,使标签可以显示多行文字

    1
    label.numberOfLines=2  //显示两行文字(默认只显示一行,设为0表示没有行数限制)


    9,设置文本高亮

    1
    2
    3
    4
    //设置文本高亮
    label.highlighted = true
    //设置文本高亮颜色
    label.highlightedTextColor = UIColor.greenColor()


    10,富文本设置

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    //富文本设置
    var attributeString = NSMutableAttributedString(string:"welcome to hangge.com")
    //从文本0开始6个字符字体HelveticaNeue-Bold,16号
    attributeString.addAttribute(NSFontAttributeName, value: UIFont(name: "HelveticaNeue-Bold", size: 16)!,
        range: NSMakeRange(0,6))
    //设置字体颜色
    attributeString.addAttribute(NSForegroundColorAttributeName, value: UIColor.blueColor(),
        range: NSMakeRange(0, 3))
    //设置文字背景颜色
    attributeString.addAttribute(NSBackgroundColorAttributeName, value: UIColor.greenColor(),
        range: NSMakeRange(3,3))
    label.attributedText = attributeString
  • 相关阅读:
    质子喜欢的和他推荐的
    Linux
    Linux
    Spring Boot入门教程1、使用Spring Boot构建第一个Web应用程序
    单点登录(SSO)的设计
    .NET Core快速入门教程 5、使用VS Code进行C#代码调试的技巧
    .NET Core快速入门教程 4、使用VS Code开发.NET Core控制台应用程序
    .NET Core快速入门教程 3、我的第一个.NET Core App (CentOS篇)
    .NET Core快速入门教程 2、我的第一个.NET Core App(Windows篇)
    .NET Core快速入门教程 1、开篇:说说.NET Core的那些事儿
  • 原文地址:https://www.cnblogs.com/Free-Thinker/p/4838123.html
Copyright © 2011-2022 走看看