Comment ajouter UIActivityIndicatorView au centre de UIAlertView?

Que le titre, je veux ajouter un UIActivityIndicatorView exemple au centre d'un UIAlertView instance. Voici mon code:

    alertView  = [[UIAlertView alloc]initWithTitle:@"Processing" message:@"" delegate:nil cancelButtonTitle:nil otherButtonTitles:nil, nil];

    CGRect screenRect = [[UIScreen mainScreen] bounds];
indicator = [[UIActivityIndicatorView alloc]initWithFrame:CGRectMake(screenRect.size.width/2, screenRect.size.height/2,50,50)];
[alertView addSubview: indicator];
[indicator startAnimating];
[alertView show];

Ce que je vois, c'est juste le alertView. Je n'ai aucun droit à l'erreur?