In my program, I have a code as below. How to exit the program after DETECTING user click OK
on the UIAlertView?
Thanks
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"YOur Message" message:@"Your description"
delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alert show];
[alert release];