It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center。
7年前关闭。
我有两个viewcontrollers Viewcontroller1和viewcontroller2
我必须全局声明一个变量并在两个视图中都使用它,但是我必须将视图1中的变量值带入view2
这怎么可能 ?
7年前关闭。
我有两个viewcontrollers Viewcontroller1和viewcontroller2
我必须全局声明一个变量并在两个视图中都使用它,但是我必须将视图1中的变量值带入view2
这怎么可能 ?
最佳答案
您可以创建一个共享类并在其中声明变量
那么您可以在viewcontroller1和2中都导入sharedClass.h并使用它
共享类* shrdclass;
注意:您也可以将变量的值传递到一个视图到另一个视图,而无需使用共享类,因此很容易,将其选中here
10-08 06:28