我是 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
我该怎么做呢?