спасибо много человек :)

пользователь нажимает кнопку наUIAlertView clickedButtonAtIndex метод должен вызываться, однако он не:

в.h я позвонилUIAlertView протокол:

@interface RechercherViewController : UIViewController<UIAlertViewDelegate>  {

//code
}

И в.m&nbsp;файл у меня есть это:

-(void)requestFailed:(ASIHTTPRequest *)request
{
    //quand il y aura un échec lors de l'envoie de la requête

    UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"TopStation"
                                                message :@"Your internet connexion is down"
                                                delegate:nil
                                       cancelButtonTitle:@"OK"
                                       otherButtonTitles:nil];

                       [alert show];
                       [alert release];

}

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{

    if (buttonIndex == 0) {
        NSLog(@"buttonIndex 0");
    } else if(buttonIndex == 1) {
        NSLog(@"buttonIndex 1");
    }
}

ничего не отображается в файле журнала, пожалуйста, помогите, спасибо заранее :)