Ios/swift/storyboard
提供: 初心者エンジニアの簡易メモ
storyboardのViewControllerのインスタンス取得
storyboardのViewControllerにラベルを貼り付け、
そのViewControllerのインスタンスを取得しようとした際、
以下のようにアクセスするとラベル外れてしまう。
var vs: ViewController = ViewController()
解決方法として、
storyboardのViewControllerのStoryboardIDに"View"を入れ以下のようにアクセスすればよい。
let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle()) // ここのMainはMain.storyboardのMain var vs : ViewController = storyboard.instantiateViewControllerWithIdentifier("View") as! ViewController