Je commence à développer pour l'iPhone. J'ai une question de débutant, j'en suis sûr :
J'ai ceci, qui fonctionne :
testLabel.text = [NSString stringWithFormat:@"%@ to %@", testLabel.text, newLabelText];
J'aimerais pouvoir utiliser l'opérateur "+=", mais j'obtiens une erreur de compilation (Invalid operands to binary +, have 'struct NSString *' and 'struct NSString *') :
testLabel.text += [NSString stringWithFormat:@"to %@", newLabelText];
Pourquoi ne puis-je pas faire cela ?
Par ailleurs, comment puis-je raccourcir mon premier extrait de code ?