Code:
for (;;) {
UIAlertView *alertView=[[UIAlertView alloc] initWithTitle:@"I wanna know you" message:currentNode.question delegate:self cancelButtonTitle:@"Skip" otherButtonTitles:currentNode.option1, currentNode.option2, nil];
[alertView show];
[alertView release];
}
it seems that it can get the result i want. this even won't show the alert view at all. can someone explain the reason.