单击按钮时,我一直在尝试使用屏幕中的标签显示三种随机颜色。
-(IBAction)spinButton:(id)sender;
{
NSLog(@"Spin started.");
NSLog(@"Message");
NSLog(@"Message %@", nsString);
printf("%s\n", [@"Button Press" UTF8String]);
printf("%s %d %d %d\n", [@"Color: " UTF8String], wheelLeftColor, wheelMiddleColor, wheelRightColor);
wheelLeftColor.backgroundColor = [UIColor colorWithRed: 0.9 green: 0.9 blue: 0.6 alpha: 1.0];
wheelMiddleColor.backgroundColor = [UIColor colorWithRed: 0.9 green: 0.3 blue: 0.6 alpha: 1.0];
wheelRightColor.backgroundColor = [UIColor colorWithRed: 0.5 green: 0.6 blue: 0.3 alpha: 1.0];
[NSString stringWithFormat:@"%d", int_num]
time_t seed = time(0);
srandom((int)seed);
int num = random() % 3;
我不知道如何使这项工作。我有一个想法,但不确定如何实现它,在操作方法中,传递标签对象和颜色代码这里的问题是如何使用整数来存储一个值 1 - 3 来表示每个轮子的颜色?提前致谢