私は私のクラスのプライベート変数を持っている:2つのスレッドをBOOL変数と同期させる方法は?
BOOL isEnabled;
と方法:
-(void) foo {
if(isEnabled) {
// do some operations
}
else {
// wait till other thread makes isEnabled = TRUE and do operations
}
}
私は何とか方法をsynchnizeする必要があります。 isEnabled
が成立した後、私は自分の操作を行うことができます。
説明のため本当にありがとうございます – Buron