facebook twitter hatena line email

「Ios/swift/label」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==storyboardを使わずにHelloworldを表示== ViewController.swiftに追加 override func viewDidLoad() { super.viewDidLoad() let label1: UILabel =...」)
(相違点なし)

2016年6月18日 (土) 04:27時点における版

storyboardを使わずにHelloworldを表示

ViewController.swiftに追加

   override func viewDidLoad() {
       super.viewDidLoad()
       let label1: UILabel = UILabel()
       label1.frame = CGRectMake(100.0, 150.0, 200.0, 50.0)
       label1.backgroundColor = UIColor.yellowColor()
       label1.text = "Helloworld"
       label1.textAlignment = NSTextAlignment.Center
       self.view.addSubview(label1)
   }