我有以下代码在按钮上显示我的数组中的随机字符串,但我无法弄清楚是什么错误(声明的数组不包括在下面)。最后一行肯定存在问题。谢谢!
int index = [self.colorlist count];
int random = (arc4random() % index);
NSString *color1 = [self.colorlist objectAtIndex:random];
[Button1 setTitle:@"%@", color1 forState:UIControlStateNormal];