「Ios/swift/storyboard」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==storyboardのViewControllerのインスタンス取得== storyboardのViewControllerにラベルを貼り付け、 そのViewControllerのインスタンスを取得...」) |
(相違点なし)
|
2016年6月25日 (土) 22:49時点における版
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