我正在尝试将数据从 FirstView(一个文本字段和一个按钮)记录到 SecondView(UiTableView),例如联系人列表。我想简要解释一下我的代码。
我在 AppDelegate.m 中添加了带有 TabBar 的 NavigationController;
UINavigationController *pointer = [[UINavigationController alloc] init];
self.window.rootViewController = pointer;
[pointer setNavigationBarHidden:NO];
[pointer pushViewController:self.viewController animated:YES];
我已经使用 a[self.navigationController pushViewController:push animated:YES];
将数据推送到第二个屏幕,但它总是转到另一个 NavigationController 视图作为带有 BACK 按钮的循环,然后我使用 [self.navigationController popToRootViewControllerAnimated:YES];
它不会将数据传递到另一个视图。除非我完全关闭程序并再次打开它。那么有没有办法同时push和pop呢?或者你能告诉我另一种方式吗?
提前致谢。
注意我已经在这个链接中分享了我的代码; 我的代码