「Ios/swift/storyboard」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→storyboardのViewControllerのインスタンス取得) |
|||
行10: | 行10: | ||
解決方法として、 | 解決方法として、 | ||
− | storyboardのViewControllerのStoryboardIDに" | + | storyboardのViewControllerのStoryboardIDに"View"を入れ以下のようにアクセスすればよい。 |
− | let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle()) | + | let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle()) // ここのMainはMain.storyboardのMain |
− | var vs : ViewController = storyboard.instantiateViewControllerWithIdentifier(" | + | var vs : ViewController = storyboard.instantiateViewControllerWithIdentifier("View") as! ViewController |
2016年6月26日 (日) 00:32時点における版
storyboardのViewControllerのインスタンス取得
storyboardのViewControllerにラベルを貼り付け、
そのViewControllerのインスタンスを取得しようとした際、
以下のようにアクセスするとラベル外れてしまう。
var vs = 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