我将按钮从调用 Storyboard 中的另一个 ViewController 更改为使用 JSon 从网站下载一些东西。现在我需要在代码之后调用相同的 ViewController ......
可能这是一个简单的东西,但我不太明白
谢谢
我将按钮从调用 Storyboard 中的另一个 ViewController 更改为使用 JSon 从网站下载一些东西。现在我需要在代码之后调用相同的 ViewController ......
可能这是一个简单的东西,但我不太明白
谢谢
我不确定这就是你要找的东西,但是看看这个。
假设您有两个控制器,ViewController1 和 ViewController2。在 ViewController 1 中完成 JSON 解析后,假设从 [self finishedGetJSON],您可以这样做;
- (void) finishedGetJSON(yourargument*) arg {
ViewController1 * screen = [self.storyboard instantiateViewControllerWithIdentifier:@"yourIdentifier"];
[self.navigationController pushViewController:screen animated:YES];
那是你要找的吗?