我有一个视图,用于将数据添加到表中。我使用以下方法显示此视图presentViewController:
AddViewController *avc = [self.storyboard instantiateViewControllerWithIdentifier:@"addview"];
[self presentViewController:avc animated:YES completion:nil];
这UINavigationController是UIViewController显示添加控件的根视图控制器。
我从项目中的几个不同地方触发了这个UINavigationController,我希望每个地方的文本略有不同。如何与UIViewControllerfrom where I call进行交互presentViewController,或者UIViewController根据调用位置进行更改?