我创建了一个名为PhobiaList.plist的.Plist。 我不确定如何实现plist,以便当按下button1时它会显示随机进入lable1?
答案 0 :(得分:2)
假设您的plist中存储了一个数组。然后,您可以生成0到[theArray count]
之间的随机数。
NSInteger randomIndex = arc4random() % [theArray count];
通过调用选择字符串。
NSString* yourRandomString = [theArray objectAtIndex:randomIndex];