facebook twitter hatena line email

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

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

2016年6月26日 (日) 08:14時点における最新版

storyboardのViewControllerのインスタンス取得

storyboardのViewControllerにラベルを貼り付け、

そのViewControllerのインスタンスを取得しようとした際、

以下のようにアクセスするとラベル外れてしまう。

var vs: ViewController = 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