0

我已经阅读了很多关于如何从 SO 传递变量的链接,包括这个链接。

在 xcode 中访问另一个类的变量

但是,我已经在我的 FirstViewController.h 文件中的 SecondViewController.m 文件中导入了 FirstViewController.h 文件我有一个变量定义为 .h @property (nonatomic,retain) int test;.m @synthesized 测试;

并且在视图中确实加载了 SecondViewController.hi 尝试做

FirstViewContoller.test=10;

但无法识别该变量。

如果有人可以帮忙请

4

1 回答 1

3

您不能在类上设置属性。您只能设置对象的属性,即类的实例。你必须写

FirstViewController *vc = [[FirstViewController alloc] init];
vc.test = 10;
// use then vc for whatever it should be used.

哦,顺便说一句:这与 Xcode 没有任何关系。

于 2012-09-25T14:19:50.480 回答