这是我的情况。我有一个带有按钮的 ViewController 类 A,该按钮通过执行以下操作转到 TableViewController 类 B。
- (void) goToClassB
{
ViewControllerB *viewController =
[[ViewControllerB alloc] initWithStyle:UITableViewStylePlain];
// Present view controller modally.
if ([self
respondsToSelector:@selector(presentViewController:animated:completion:)]) {
[self presentViewController:viewController animated:YES completion:nil];
} else {
[self presentModalViewController:viewController animated:YES];
}
}
我希望能够拥有一个 A 类和 B 类都可以访问和编辑的数组。我该如何实现呢?