我希望能够在按下 UIButton 时随机一个值。
我尝试了 if else 语句,但它似乎崩溃了。
每次按下按钮时,这都会生成一个随机数并将其输出到控制台。
- (void)viewDidLoad
{
UIButton *button = [UIButton buttonWithStyle:UIButtonStyleRoundedRect];
[button addTarget:self withAction:@selector(random) forEvent:UIControlEventTouchUpInside];
[button setFrame:CGRect(50,50,100,50);
[self.view addsubview:button];
}
- (void)random
{
NSLog(@"%i",arc4random());
}
将 IBAction 添加到您的按钮,然后执行以下操作:
- (IBAction)buttonPress:(id)sender
{
myValue = arc4random() % MAX_VALUE;
}
这将从 [0, MAX_VALUE) 生成一个随机数,并将其存储在 (int) 变量myValue
中。
试试这个:
[ButtonName addTarget:self action:@selector(randomize) forControlEvents:UIControlEventTouchUpInside];
- (void) randomize
{
random = arc4random()%5;
switch (random)
{
case 0:
*condition*
break;
case 1:
*condition*
break;
.....
}
希望这可以帮助你。