facebook twitter hatena line email

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