3

我试图在 MKPinAnnotationView 的标注内显示 UITableView。我在我的故事板文件中添加了 UITableViewController。我正在使用以下代码将 leftAccessoryView 分配给 UITableView。

- (MKAnnotationView *)mapView:(MKMapView *)mv viewForAnnotation:(id < MKAnnotation >)annotation
{
    if([annotation isKindOfClass:[MKUserLocation class]])
        return nil; 

    NSString *annotationIdentifier = @"ZillowPropertyDetailsIdentifier"; 

    MKPinAnnotationView *propertyDetailsView = (MKPinAnnotationView *) [mv 
                                                            dequeueReusableAnnotationViewWithIdentifier:annotationIdentifier];

    if (!propertyDetailsView) 
    {
        propertyDetailsView = [[MKPinAnnotationView alloc] 
                    initWithAnnotation:annotation 
                    reuseIdentifier:annotationIdentifier];

        // get view from storyboard 
        PropertyDetailsViewController *propertyDetailsViewController = (PropertyDetailsViewController *) [self.storyboard instantiateViewControllerWithIdentifier:@"PropertyDetailsIdentifier"];

        propertyDetailsView.leftCalloutAccessoryView = propertyDetailsViewController.view;

        [propertyDetailsView setPinColor:MKPinAnnotationColorGreen];
        propertyDetailsView.animatesDrop = YES; 
        propertyDetailsView.canShowCallout = YES; 

    }
    else 
    {
        propertyDetailsView.annotation = annotation;
    }

    return propertyDetailsView; 
}

PropertyDetailsViewController:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{

    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

    // Return the number of rows in the section.
    return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    // Configure the cell...

    return cell;
}

当我单击该引脚时,它会因 BAD_EXCEPTION 或其他原因而崩溃。

4

1 回答 1

0

你只有记忆问题。当你这样做

PropertyDetailsViewController *propertyDetailsViewController = (PropertyDetailsViewController *) [self.storyboard instantiateViewControllerWithIdentifier:@"PropertyDetailsIdentifier"];

这将返回一个自动释放的PropertyDetailsViewController。稍后您只需将其视图分配给标注附件视图,但没有人保留视图控制器。儿子当方法完成时,视图控制器保留计数为零并且被释放。当访问该视图控制器上的任何内容时,会引发 BAD_EXCEPTION。

实际上,BAD_EXCEPTION 通常是内存问题(释放过多、两次自动释放等)。激活“启用僵尸对象”标志可以更好地跟踪它们。这使得对象不会被完全释放,因此您可以看到哪个失败了。

于 2012-11-01T20:26:59.413 回答