「Ios/swift/画面遷移」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==ViewController.swift作成== #プロジェクトからNewFileを作成しSwiftFileを作成する #名前をSecondViewControllerとする #するとSecondViewController...」) |
(相違点なし)
|
2016年6月20日 (月) 20:47時点における版
ViewController.swift作成
- プロジェクトからNewFileを作成しSwiftFileを作成する
- 名前をSecondViewControllerとする
- するとSecondViewController.swiftがつくられる
以下の通りSecondViewController.swiftを書き換える
import UIKit class SecondViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() self.view.backgroundColor = .redColor() } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() } }