I have two sets of arrays in my app that consist of 3 images each. Every time my app is used, I want one of the two arrays to be set as array _finalSelection (e.g. each time one or the other should be set to _finalSelection randomly). How can I achieve this?
ViewController.m
-(void)viewDidLoad {
_pageImages = @[@"britt001.png", @"britt02.png", @"britt030.png"];
_pageImages2 = @[@"britt001.png", @"britt02.png", @"britt030.png"];
_finalSelection = [one of the two above arrays];
}