facebook twitter hatena line email

「Ios/swift/画面遷移」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==ViewController.swift作成== #プロジェクトからNewFileを作成しSwiftFileを作成する #名前をSecondViewControllerとする #するとSecondViewController...」)
(相違点なし)

2016年6月20日 (月) 20:47時点における版

ViewController.swift作成

  1. プロジェクトからNewFileを作成しSwiftFileを作成する
  2. 名前をSecondViewControllerとする
  3. するとSecondViewController.swiftがつくられる

以下の通りSecondViewController.swiftを書き換える

import UIKit
class SecondViewController: UIViewController {
   override func viewDidLoad() {
       super.viewDidLoad()
       self.view.backgroundColor = .redColor()
   }
   override func didReceiveMemoryWarning() {
       super.didReceiveMemoryWarning()
   }
}