Ios/swift/storyboard
提供: 初心者エンジニアの簡易メモ
2016年6月25日 (土) 22:49時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==storyboardのViewControllerのインスタンス取得== storyboardのViewControllerにラベルを貼り付け、 そのViewControllerのインスタンスを取得...」)
storyboardのViewControllerのインスタンス取得
storyboardのViewControllerにラベルを貼り付け、
そのViewControllerのインスタンスを取得しようとした際、
以下のようにアクセスするとラベル外れてしまう。
var vs = ViewController()
storyboardのViewControllerのStoryboardIDに"Main"を入れ以下のようにアクセスする
let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle()) var vs : ViewController = storyboard.instantiateViewControllerWithIdentifier("Main") as! ViewController