私は Objective-C と C 言語の初心者です。
私のコードは次のようになります:
- (IBAction)button:(id)sender {
int randomproces = rand() % 3;
switch (randomproces) {
case 0:
//do this
break;
case 1:
//do this
break;
case 2:
//do this
break;
default;
break;
}
}
ここで、別の 3 つのボタンに何かを設定して、ランダムな状況に応じて正しくまたは正しくないようにしたいと考えています。
- (IBAction)b1:(id)sender {
//if case 0 then set it correct
//else incorrect
}
- (IBAction)b2:(id)sender {
//if case 1 then set it correct
//else incorrect
}
// etc
どうすればいいですか?