Skip to content

Instantly share code, notes, and snippets.

@JotaroS
Last active February 9, 2016 06:56
Show Gist options
  • Save JotaroS/9bb81bfad6528524a912 to your computer and use it in GitHub Desktop.
Save JotaroS/9bb81bfad6528524a912 to your computer and use it in GitHub Desktop.
Swiftによるアプリ開発〜Storyboardを用いた最もシンプルな画面遷移の超テンプレ ref: http://qiita.com/JotaroS/items/20ee03edfebe4e9bbf34
|---buttonA--2nd view
1st view----
|---buttonB--3rd view
super.viewDidLoad()
let view = UINib(nibName: "FirstView", bundle: nil).instantiateWithOwner(self, options: nil).first as? UIView;
self.view = view;
// Do any additional setup after loading the view, typically from a nib.
super.viewDidLoad()
let view = UINib(nibName: "FirstView", bundle: nil).instantiateWithOwner(self, options: nil).first as? UIView;
self.view = view;
// Do any additional setup after loading the view, typically from a nib.
seguire (伊・動・第三活用)「続く」、etc
活用(現
io seguo
tu segui
lui, lei, Lei segue
noi seguiamo
voi seguite
loro, Loro seguono
不定詞 seguire
らしい。
performSegueWithIdentifier("buttonA", sender: self)
performSegueWithIdentifier("buttonA", sender: self)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment