Qui ho aggiunto le immagini (UIImageViews) tutto funziona sul simulatore ma non sul dispositivo (iOS 4.1) wtf !?Funziona su iPhone Simulator ma non sul dispositivo
- (void)addChips:(int)value {
UIImage *chipImage;
switch (value) {
case 5:
chipImage = [UIImage imageNamed:@"5chip"];
break;
case 25:
chipImage = [UIImage imageNamed:@"25chip"];
break;
case 100:
chipImage = [UIImage imageNamed:@"100chip"];
break;
case 500:
chipImage = [UIImage imageNamed:@"500chip"];
break;
default:
break;
}
int chipCount = [chipsOnBet count];
UIImageView *addChip = [[UIImageView alloc] initWithImage:chipImage];
addChip.opaque = YES;
addChip.frame = CGRectMake((kStackOffset * chipCount) + 131, 268, 57, 57);
[self.view addSubview:addChip];
[chipsOnBet addObject:addChip];
[addChip release];
}
Case Sensitivity ha risolto un problema simile per me: è possibile utilizzare la funzione MinuscoleStringa o MaiuscoleStringa per ottenere uniformità. Grazie Alin – Brett