.Plist数组生成随机字符串到UILabel

时间:2012-03-19 08:43:33

标签: iphone ios xcode plist

我创建了一个名为PhobiaList.plist的.Plist。 我不确定如何实现plist,以便当按下button1时它会显示随机进入lable1?

1 个答案:

答案 0 :(得分:2)

假设您的plist中存储了一个数组。然后,您可以生成0到[theArray count]之间的随机数。

NSInteger randomIndex = arc4random() % [theArray count];

通过调用选择字符串。

NSString* yourRandomString = [theArray objectAtIndex:randomIndex];