私は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;