UIAlertViewを実行すると問題が発生します(アラートビューは正常に機能します)が...別のウィンドウへのセグエを実行できません...遷移のタイプはモーダルです...何か助けはありますか?
if([txtPeticion hasText] )
{
alertaVeladora = [[UIAlertView alloc]
initWithTitle:@"Santuario Virtual"
message:@"Gracias por compartir tu veladora!"
delegate:self
cancelButtonTitle:nil
otherButtonTitles:nil];
[alertaVeladora show];
[self postMessage:txtPeticion.text shareTw:shareTwitter shareFb:shareFacebook withEmail:email];
txtPeticion.text = @"";
[self performSelector:@selector(dismissAlert:) withObject:alertaVeladora afterDelay:1.0f];
}