だから私は3つのタブを持つタブバーアプリを持っています。2 番目のタブには、元のタブ ビューで 2 つのテキスト フィールドが値を 2 つのラベルに渡す別のビューを読み込むボタンがあります。ボタンをクリックして値を入力し、設定ボタンをクリックして元のビューに戻ると、ラベルは変更されますが、タブ バーは読み込まれません。別のビューから切り替えた後、タブ バーを読み込むにはどうすればよいですか?
元のタブ バー ビューのボタンが押されたときのコード
TeamNameViewController *fvc = [self.storyboard instantiateViewControllerWithIdentifier:@"99"];
fvc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentViewController:fvc animated:YES completion:nil];
タブバーに戻るコード
SecondViewController *tempView = [self.storyboard instantiateViewControllerWithIdentifier:@"SecondViewControllerSB"];
tempView.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentViewController:tempView animated:YES completion:nil];