我有一个导航控制器。在我的第二个视图中,我想要一个按钮,当被点击时,转到第一个 viewController 并在那里设置一个文本。
所以,在我的按钮(secondView)中,我有:
SearchViewController *svc=[[SearchViewController alloc]init];
[svc setValueMethod:@"randomString"];
[self.navigationController popToRootViewControllerAnimated:YES];
在我的 fitView 中:
-(void)setValueMethod:(NSString *)myPassedString
{
_searchField.text = myPassedString;
}
但是 _searchField 现在为空。但是当你第一次进入应用程序时,它可以正常工作,你可以让 _searchField.text = @"aString"; 那项工作。但在从 secondView 弹出后,它为空!
有人可以帮我吗?