facebook twitter hatena line email

Ios/swift/画面遷移

提供: 初心者エンジニアの簡易メモ
2016年6月20日 (月) 20:47時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==ViewController.swift作成== #プロジェクトからNewFileを作成しSwiftFileを作成する #名前をSecondViewControllerとする #するとSecondViewController...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

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()
   }
}