facebook twitter hatena line email

「Ios/swift/storyboard」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==storyboardのViewControllerのインスタンス取得== storyboardのViewControllerにラベルを貼り付け、 そのViewControllerのインスタンスを取得...」)
 
行8: 行8:
 
  var vs = ViewController()
 
  var vs = ViewController()
  
storyboardのViewControllerのStoryboardIDに"Main"を入れ以下のようにアクセスする
+
解決方法として、
 +
 
 +
storyboardのViewControllerのStoryboardIDに"Main"を入れ以下のようにアクセスすればよい。
  
 
  let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle())
 
  let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle())
 
  var vs : ViewController = storyboard.instantiateViewControllerWithIdentifier("Main") as! ViewController
 
  var vs : ViewController = storyboard.instantiateViewControllerWithIdentifier("Main") as! ViewController

2016年6月25日 (土) 22:50時点における版

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