J'ai un tel code:Utiliser performSelectorInBackground pour exécuter indicateur de chargement
[self performSelectorInBackground:@selector(indicator) withObject:nil];
[self mail]; //opening my controller of e-mail sending
- (void)indicator
{
[actView startAnimating];
}
Cela fonctionne très bien, mais j'ai peur de la sécurité fil. Je n'alloue pas de mémoire dans un deuxième fil, mais smth me dit que c'est trop simple :)