Eu gostaria de desabilitar um botão depois de clicar nele, atualmente esse botão mostra, depois de clicado, um alert e eu gostaria de desabilita-lo depois de ser clicado. Segue o código do botão:
-(IBAction)showAlertButtonPressed:(UIButton*)sender {
[self showAlert]
}
-(void)showAlert{
UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"Meu Alerta!"
message:@"Isso é um Alerta!"
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* cancelAction = [UIAlertAction actionWithTitle:@"CANCELAR" style:UIAlertActionStyleCancel
handler:nil];
[alert addAction:cancelAction];
[self presentViewController:alert animated:YES completion:nil];
}