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