我有一些具有相同类的视图控制器。
当我选择一个特定的人时,我如何区分它们?
通常我会使用此代码来执行此操作,但这仅在存在该类的单个实例时才有效:
SecondViewController *secondview = [[SecondViewController alloc] initWithNibName:nil bundle:nil];
[self presentViewController:secondview animated:YES completion:nil];
我有一些具有相同类的视图控制器。
当我选择一个特定的人时,我如何区分它们?
通常我会使用此代码来执行此操作,但这仅在存在该类的单个实例时才有效:
SecondViewController *secondview = [[SecondViewController alloc] initWithNibName:nil bundle:nil];
[self presentViewController:secondview animated:YES completion:nil];