I'm writing an iPhone app in which I have a double component picker. One side has the 13 different card values (ace, 2, 3, 4, etc.) and the other should have images for the four suits (spades, hearts, diamonds, clubs). I dragged the four .png files into the folder.
Can anyone tell me why this code doesn't work? I'm almost exactly following an example from class.
UIImage *spades = [UIImage imageNamed:@"spades.png"];
UIImage *hearts = [UIImage imageNamed:@"hearts.png"];
UIImage *diamonds = [UIImage imageNamed:@"diamonds.png"];
UIImage *clubs = [UIImage imageNamed:@"clubs.png"];
UIImageView *spadesView = [[UIImageView alloc] initWithImage:spades];
UIImageView *heartsView = [[UIImageView alloc] initWithImage:hearts];
UIImageView *diamondsView = [[UIImageView alloc] initWithImage:diamonds];
UIImageView *clubsView = [[UIImageView alloc] initWithImage:clubs];
NSArray *suitsArray = [[NSArray alloc] initWithObjects: spadesView, heartsView, diamondsView, clubsView, nil];
self.suits = suitsArray;
When I just try to do this (below), it works.
NSArray *suitsArray = [[NSArray alloc] initWithObjects: @"Spades", @"Hearts", @"Diamonds", @"Clubs", nil];
self.suits = suitsArray;
Any ideas?