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:セレクターがありません。

アラート 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

このように UIAlerView を autoreleased オブジェクトとして使用してみてください。

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

あなたが提供したコードですべてがうまくいきます。他の場所で患者オブジェクトに奇妙なことが起こっていない限り、ここではすべてがうまくいっていると言えます。

于 2010-03-04T03:54:44.050 に答える