美文网首页
Swift UILabel学习

Swift UILabel学习

作者: Fan_say_hi | 来源:发表于2018-08-18 12:13 被阅读0次

    let label = UILabel(frame: CGRect(x: 10, y: 240, width: 300, height: 35))

            label.backgroundColor = UIColor(displayP3Red: 153.0/255, green: 153.0/255, blue: 153.0/255, alpha: 1) // 设置背景颜色

            label.text = "hello world" // 设置文字

            label.textColor = UIColor.white // 设置文字颜色

            label.numberOfLines = 0 // 设置文字自动换行

            label.textAlignment = NSTextAlignment.center // 设置文字居中

            label.font = UIFont.systemFont(ofSize: 11) // 设置字体大小

            label.layer.cornerRadius = 3 // 设置圆角

            label.layer.masksToBounds = true

            label.shadowColor = UIColor.red // 阴影颜色

            label.shadowOffset = CGSize(width: 1, height: 1) // 阴影偏移量

            label.layer.borderColor = UIColor.green.cgColor // 边框颜色

            label.layer.borderWidth = 2 // 边框宽度

            self.view.addSubview(label)

    相关文章

      网友评论

          本文标题:Swift UILabel学习

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