3

我有一个显示正常的警报视图。在我的标题中,我包含了 UIAlertViewDelegate,但由于某种原因,每当我单击警报视图上的一个按钮时,我的应用程序都会因严重过剩而崩溃,说发送了一个无法识别的选择器。

任何想法都会有所帮助。我在其他类中运行完全相同的代码,完全没有问题。

这是我的代码:

    -(void)deletePatient
{
 NSLog(@"Delete");
 //Patient *patientInRow = (Patient *)[[self fetchedResultsController] objectAtIndexPath:cellAtIndexPath];
 NSMutableArray *visitsArray = [[NSMutableArray alloc] initWithArray:[patient.patientsVisits allObjects]];
 //cellAtIndexPath = indexPath;
 int visitsCount = [visitsArray count];
 NSLog(@"Visit count is %i", visitsCount);
 if (visitsCount !=0) 
 {
  //Display AlertView
  NSString *alertString = [NSString stringWithFormat:@"Would you like to delete %@'s data and all their visits and notes?", patient.nameGiven];
  UIAlertView *alert1 = [[UIAlertView alloc] initWithTitle:alertString message:nil delegate:self cancelButtonTitle:@"Yes" otherButtonTitles:@"No",nil];
  [alert1 show];
  [alert1 release];

 }
 else if (visitsCount ==0) 
 {
  //Do something else
 }

 [visitsArray release];

}

-(void)alertView:(UIAlertView*)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
 // the user clicked one of the OK/Cancel buttons
 if (buttonIndex == 0)
 {
  NSLog(@"Yes");

 }
 else
 {
  NSLog(@"No");
 }
}

所以我能弄清楚的最好的事情,它与我从 UITableViewCell 子类调用 deletePatient 方法并在我这样做时传递患者对象的事实有关。这是传递它的代码

-(IBAction)deletePatient:(id)sender
{
    NSLog(@"Delete Patient:%@",patient.nameGiven);
    PatientListTableViewController *patientList = [[PatientListTableViewController alloc] init];
    patientList.patient = patient;
    UITableView *tableView = (UITableView *)[self superview];
    tableView.scrollEnabled = YES;
    [patientList deletePatient];
    menuView.center = CGPointMake(160,menuView.center.y);
    [patientList release];
}
4

3 回答 3

8

您将 patientList 对象设置为 UIAlertView 实例的委托,然后将其释放。当用户单击警报按钮时,它会调用 [delegate alertView:self clickedButtonAtIndex:buttonIndex],但委托 PatientList 已被释放且不再存在。此刻的变量委托包含垃圾,所以毫不奇怪它没有alertView:clickedButtonAtIndex: selector;

只需在 alert alertView:clickedButtonAtIndex: 方法中释放 patientList 对象,或者在创建/释放外部类时创建/释放 patientList 或简单地使用属性:

// 在 *.h 文件中:

...
PatientListTableViewController *patientList;
...
@property(retain) PatientListTableViewController *patientList;
...

// 在 *.m 文件中:@synthesize patientList;

...
self.patientList =  [[PatientListTableViewController alloc] init];
于 2010-03-04T16:54:01.027 回答
0

您提供的代码一切正常。除非患者对象在其他地方发生了一些奇怪的事情,否则我会说这里看起来一切都很好。

于 2010-03-04T03:54:44.050 回答
0

尝试使用 UIAlerView 作为这样的自动释放对象;

UIAlertView *alert1 = [[UIAlertView alloc] initWithTitle:alertString message:nil delegate:self cancelButtonTitle:@"Yes" otherButtonTitles:@"No",nil] autorelease];
[alert1 show];
于 2010-03-04T06:52:58.590 回答