I have some three xib files, a b c there is a button on b,and it will show an alert when click it,the code is
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Warning"
message:@"You will jump to a when you click Yes,Go ,or click No,I am not for exit"
delegate:nil
cancelButtonTitle:@"Yes,Go"
cancelButtonTitle:@"No,I am not"
otherButtonTitles:nil];
[alert show];
[alert release];
正如我所描述的那样,我要跳跃到我点击了是的,如果我点击第1号,那就关闭了。
因此,应该做些什么?
增 编