Swift基礎教程(swift代碼建立第一個控制項之UILabel)

來源:互聯網
上載者:User

標籤:ios   ios開發   控制項   uilabel   swift   

首先 給需要建立的label 設定frame

let textLabel = UILabel(frame:CGRectMake(self.view.frame.size.width/8,20,self.view.frame.size.width*3/4,100))

給label 設值

        textLabel.text = “現在我們來開始學習如何建立我們的第一個swift控制項吧 -UILabel”

設定是否預設換行

textLabel.numberOfLines = 0

設定label的背景顏色

var whitColor = UIColor(red:1.0,green:1.0,blue:1.0,alpha:1.0)

textLabel.backgroundColor = whitColor

設定label的文本資訊展示樣式,

        textLabel.textAlignment = NSTextAlignment.Left

設定label的字型

var textFont = UIFont(name: nil, size : 11)

textLabel.font = textFont

設定label的文本顏色

var greenColor = UIColor(red:0.9,green:0.2,blue:0.6,alpha:1.0)

textLabel.textColor = greenColor

添加視圖到view

self.view.addSubview(textLabel)

 

Swift基礎教程(swift代碼建立第一個控制項之UILabel)

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.