我有 2 个 ViewController,即 V1 和 V2。我想将值从 V2 传递到 V1,但我在 V1 中得到 countV1 的值 0。我在 stackoverflow 中看到了更多问题,但我无法处理这个小问题。我使用 ARC。
在 V1 中
.h 文件
@property(nonatomic,unsafe_unretained) int countV1;
.m 文件
@synthesize countV1;
在 V2 中
.m 文件
int countV2 = 1;
V1 *v1 = [V1 alloc] initWithNibName:@"V1" bundle:nil];
v1.countV1 = countV2;