web-dev-qa-db-ja.com

ストーリーボード内のView Controllerに「識別子」を与えるにはどうすればよいですか?

instantiateViewControllerWithIdentifier:メソッドでは、渡すView Controllerに識別子が必要です。ストーリーボードにアクセスしてView Controllerをクリックしましたが、識別子を設定するオプションが表示されません。このオプションはどこにありますか?

33
Doug Smith

画像が示すように!それが役に立てば幸い!

enter image description here

次に、それを使用するために呼び出します:

[self.storyboard instantiateViewControllerWithIdentifier:@"YourViewControllerID"];
52
Groot

XCode 8およびSwift 3。

instantiateViewControllerWithIdentifierinstantiateViewController(withIdentifier:)になりました。

ストーリーボードIDの設定: enter image description here

10
Taiwosam

identity inspectorには、フィールドStoryboard IFがあります。ここにクラス名を入力し、instantiateViewControllerWithIdentifier:でこの識別子を使用できます。

5
Felix