1

我有一些具有相同类的视图控制器。

当我选择一个特定的人时,我如何区分它们?

通常我会使用此代码来执行此操作,但这仅在存在该类的单个实例时才有效:

SecondViewController *secondview = [[SecondViewController alloc] initWithNibName:nil bundle:nil];

[self presentViewController:secondview animated:YES completion:nil];
4

1 回答 1

2

您有以下选择:

-使用故事板等,使用segues;

- 使用故事板并使用:

ExploreViewController *ev = [self.storyboard instantiateViewControllerWithIdentifier:@"ProfileViewController"];

- 不要使用情节提要,因此您只需根据要显示的视图控制器在“ initWithNibName ”中设置笔尖名称。

于 2013-11-15T00:53:06.880 回答