希望有人可以帮我制作下面的NSArray文本,这是一个可以随机化随机图像而不是当前文本的图像数组。非常感谢任何帮助。
@synthesize predictions = _predictions;
- (NSArray *) predictions {
if (_predictions == nil){
_predictions = [[NSArrayalloc] initWithObjects:
@"Today",
@"Tomorrow",
@"Some other time", nil];
}
return_predictions;
}
- (NSString*) randomPrediction {
int random = arc4random_uniform(self.predictions.count);
return [self.predictions objectAtIndex:random];
}