I have a problem when I try to dismiss my UIAlertView. The UIAlertView launches correctly, and displays two buttons: \"Yes\" and \"No\". However, when I select the Yes button, n
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Are you sure you wish to exit this app and launch the safari browser?"
message:@"Click yes to continue"
delegate:self
cancelButtonTitle:@"Yes"
otherButtonTitles:@"No", nil];