UIAlertview в iOS7 не увольняют
UIAlertview
в iOS7 не увольняется, когда он был уволен в дочернем классе, но не в родительском классе. Любое решение для этого?
UIAlertView *alertView=[[[UIAlertView alloc]initWithTitle:@""
message:@"Please Select the Start Date"
delegate:self
cancelButtonTitle:@"Ok"
otherButtonTitles:nil] autorelease];
[alertView show];
Метод делегата:
#pragma UIAlertView Delegate
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
if (buttonIndex==0) {
[alertView dismissWithClickedButtonIndex:0 animated:YES];
}
}