私は を使用UITabBarControllerしていTabBarItemます。すべて からのドラッグ アンド ドロップですXIB。各タブには 1 つのビューがあります。次に、最初のビューから 2 番目のビューにNSString値を送信する方法を説明します。値を送信できません。これが私のコードです:TabBarItemTabBarItem
tableViewIns = [[TableViewController alloc]init];
tableViewIns.yearInputValue = yearTextField.text;
tableViewIns.principalInputValue = principalTextField.text;
tableViewIns.interestInputValue = interestTextField.text;
最初のタブはHomeViewController、2 番目のタブはTableViewControllerです。あるタブから別のタブに値を送信する方法。