在objective-c中的按钮中显示随机字符串

时间:2014-05-22 20:51:24

标签: objective-c button random output

我有以下代码在按钮上显示我的数组中的随机字符串,但我无法弄清楚是什么错误(声明的数组不包括在下面)。最后一行肯定存在问题。谢谢!

             int index = [self.colorlist count];
             int random = (arc4random() % index);
             NSString *color1 = [self.colorlist objectAtIndex:random];
             [Button1 setTitle:@"%@", color1 forState:UIControlStateNormal];

1 个答案:

答案 0 :(得分:2)

setTitle:接受NSString,而不是format@"%@", color1):

[Button1 setTitle:color1 forState:UIControlStateNormal];