私はStoryboard
自分のアプリで使用していて、あるビューから別のビューにデータを渡したいと思っています。
セグエを使用する代わりに、instantiateViewControllerWithIdentifier
. この場合、2番目の でナビゲーションが必要なため、1番目の から2 番目の が接続TableViewController
されたにインスタンス化します。ここで、クリックされた行に応じて、最初の から 2 番目の にデータを渡したいと思います。この場合は私ですが、私の問題は からにデータを渡す方法です。NavigationController
TableViewController
TableViewController
TableviewController
TableviewController
newTopViewController
NavigationController
firstTableViewController
secondTableviewController
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *identifier = [NSString stringWithFormat:@"%@Top", [menuArray objectAtIndex:indexPath.row]];
UIViewController *newTopViewController = [self.storyboard instantiateViewControllerWithIdentifier:identifier];
}