Here I addsubviews (UIImageViews) it all works on the simulator but not on the device (iOS 4.1) wtf!?
- (void)addChips:(int)value {
UIImage *chipImage;
switc
I found the answer in the documentation:
Case-sensitivity: iPhone OS uses a case-sensitive file system, unlike the Simulator which uses a case-insensitive file system by default. Make sure the case-sensitivity of resources accessed within code matches the filename case-sensitivity.
For example, if our filename is "YourExampleImage.png":
Good: [UIImage imageNamed:@"YourExampleImage.png"]
Bad: [UIImage imageNamed:@"YourExampleImage.PNG"]
Bad: [UIImage imageNamed:@"yourexampleimage.png"]
So I just have to ensure my image names are the same case as my resources. So in my case I should of put 5Chip instead of 5chip.