次のように作成されたViewControllerインスタンスがありますinstantiateViewControllerWithIdentifier。
TBSCTestController* testController = [self.storyboard instantiateViewControllerWithIdentifier: @"OTP"];
TBSCTestControllerストーリーボードのラベルに接続されているという名前のIBOutletプロパティがあります。label

labelこのコードを使用するテキストを変更したいのですが、何も変更されません。
testController.label.text = @"newText";
[self.view addSubview: testController.view];
はtestController有効なインスタンスですが、labelはnilです。私は何を取りこぼしたか?