正如您在磁贴中看到的,我尝试在两个视图(所选对象的id)之间共享变量。 我该怎么办?
以下是我的其他观点的代码:
EditProd *edit = [[EditProd alloc] initWithNibName:@"EditProd" bundle:[NSBundle mainBundle]];
// Pass the selected object to the new view controller.
[self.navigationController pushViewController:edit animated:YES];
[edit release];
我在其他视图中需要哪些代码来获取此变量?
答案 0 :(得分:1)
Declare a property,然后在调用pushViewController之前设置该属性。
答案 1 :(得分:1)
您可以通过三种不同的方式实现: