1

IOS 6.0 はMKMapview、IOS アプリでのズーム/ドラッグ中に、または 5.1でMKMapview使用されるよりも多くのメモリを消費しますか?ios5.0

mkmapviewズームイン中にメモリ警告が表示されますios6.0

    - (MKAnnotationView *)mapView:(MKMapView *)mapView1 viewForAnnotation:(id <MKAnnotation> )annotation
{
    if ([annotation isKindOfClass:[MKUserLocation class]])
    {
        ((MKUserLocation *)annotation).title = kCurrentLocation;
        return nil;
    }
    
    if (annotation == self.calloutAnnotation)
    {
        CalloutMapAnnotationView *calloutMapAnnotationView=nil;
        
        if (calloutMapAnnotationView==nil){
            calloutMapAnnotationView = (CalloutMapAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:@"CalloutAnnotation"];
            calloutMapAnnotationView = [[CalloutMapAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"CalloutAnnotation"];
            
            UIImageView *calloutImageView = [[UIImageView alloc]initWithFrame:CGRectMake(0,0,285,109)];
            calloutImageView.image = [UIImage loadImageFromBundle:@"map-pop"];
            [calloutMapAnnotationView addSubview:calloutImageView];
            [calloutImageView bringSubviewToFront:calloutMapAnnotationView];
            
            CGRect frame1,btnframe,btnframe2;
            int font1;
            
            frame1 = CGRectMake(14,10,270,35);
            //frame for subitle label of map annotation view.
            btnframe = CGRectMake(12,53,80,25);
            btnframe2= CGRectMake(btnframe.size.width+20,btnframe.origin.y,btnframe.size.width+35, btnframe.size.height);
            font1 = 14.0;
            
            calloutMapAnnotationView.calloutTitleLabel=nil;
            calloutMapAnnotationView.calloutTitleLabel = [[UILabel alloc]initWithFrame:frame1];
            calloutMapAnnotationView.calloutTitleLabel.numberOfLines = 2;
            calloutMapAnnotationView.calloutTitleLabel.layer.cornerRadius=6;
            [calloutMapAnnotationView.calloutTitleLabel setFont:[UIFont fontWithName:@"Helvetica-Bold" size:font1]];
            [calloutMapAnnotationView.calloutTitleLabel setBackgroundColor:[UIColor clearColor]];
            [calloutMapAnnotationView.calloutTitleLabel setTextColor:[UIColor whiteColor]];
            
            calloutMapAnnotationView.infoButton = [UIButton buttonWithType:UIButtonTypeCustom];
            [calloutMapAnnotationView.infoButton setBackgroundImage:[UIImage loadImageFromBundle:@"blank-btn"] forState:UIControlStateNormal];
            [calloutMapAnnotationView.infoButton setTitle:kInfo forState:UIControlStateNormal];
            [[calloutMapAnnotationView.infoButton titleLabel ]setFont:[UIFont fontWithName:@"Helvetica-Bold" size:font1-1]];
            [calloutMapAnnotationView.infoButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
            calloutMapAnnotationView.infoButton.frame = btnframe;
            calloutMapAnnotationView.infoButton.exclusiveTouch = YES;
            [calloutMapAnnotationView.infoButton addTarget:self action:@selector(buttonPressedAction:) forControlEvents:UIControlEventTouchUpInside | UIControlEventTouchCancel];
            [calloutMapAnnotationView addSubview:calloutMapAnnotationView.infoButton];
            [calloutMapAnnotationView.infoButton bringSubviewToFront:calloutMapAnnotationView];
            [calloutMapAnnotationView addSubview:calloutMapAnnotationView.calloutTitleLabel];
            //            infoButton=nil;
            
            calloutMapAnnotationView.routeButton = [UIButton buttonWithType:UIButtonTypeCustom];//inDark
            [calloutMapAnnotationView.routeButton setBackgroundImage:[UIImage loadImageFromBundle:@"blank-btn"] forState:UIControlStateNormal];
            calloutMapAnnotationView.routeButton.frame = btnframe2;
            [calloutMapAnnotationView.routeButton setTitle:kRouteDraw forState:UIControlStateNormal];
            [[calloutMapAnnotationView.routeButton titleLabel ]setFont:[UIFont fontWithName:@"Helvetica-Bold" size:font1-1]];
            [calloutMapAnnotationView.routeButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
            calloutMapAnnotationView.routeButton.exclusiveTouch = YES;
            calloutMapAnnotationView.routeButton.tag = well_ID;
            [calloutMapAnnotationView.routeButton addTarget:self action:@selector(showRouteView:) forControlEvents:UIControlEventTouchUpInside | UIControlEventTouchCancel];
            [calloutMapAnnotationView addSubview:calloutMapAnnotationView.routeButton];
            
        }
        
        calloutMapAnnotationView.calloutTitleLabel.text = self.titleStr;
        
        NSLog(@"well id---%d",well_ID);
        calloutMapAnnotationView.infoButton.tag = well_ID;
        
        int locationId=[[resultDict objectForKey:@"uid"] intValue];
        
        if(well_ID!=locationId)
        {
            calloutMapAnnotationView.routeButton.hidden = NO;
            calloutMapAnnotationView.routeButton.tag = well_ID;
            [calloutMapAnnotationView.routeButton bringSubviewToFront:calloutMapAnnotationView];
        }else{
            calloutMapAnnotationView.routeButton.hidden = YES;
        }
        calloutMapAnnotationView.parentAnnotationView = self.selectedAnnotationView;
        calloutMapAnnotationView.mapView = mapView;
        
        return calloutMapAnnotationView;
    } else {
        static NSString *defaultPinID = @"Pin";
        MKAnnotationView* pin = (MKAnnotationView*)[mapView dequeueReusableAnnotationViewWithIdentifier: defaultPinID];
        int annotationValue =[annotation_array indexOfObject:annotation];
        NSString * searchLocationTitle= [annotation title];
        if ( pin == nil ) {
            pin = (MKAnnotationView*) [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier: defaultPinID];
            pin.image = [UIImage loadImageFromBundle:@"logo"];
        }
        pin.canShowCallout = NO;
        if (annotationValue!=0) {
            if([searchLocationTitle isEqualToString:kCurrentLocation])
            {
                pin.image=nil;
                
            }
            else if([searchLocationTitle isEqualToString:kSearchedLocation])
            {
                pin.image=nil;
                
            }
            else
            {
                if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
                    pin.frame = CGRectMake(-15, 0, 40,65);
                } else
                {
                    pin.frame = CGRectMake(-15, 0, 45,70);
                }
            }
        }
        else{
            return nil;
        }
        return pin;
    }
    return nil;
}

viewForannotationのデリゲート メソッドの上記のコードmkmapView

4

2 に答える 2

5

6 つ以上のマップ ビューはベクター キットを使用するため、4/5 では Google マップを使用します

ios6+ の MKMapView は本当にひどいものです。メモリの消費量を減らすために何週間も費やしましたが、新しいベクターキットはメモリを狂ったように使用します:/

全世界を表示 -- ブーム 50mb、クパチーノ + 30 を表示、la + 30 に移動、ワシントン DC に移動 + 30 かそこら...

何もすることはありません.. ああ、それを改善しようとすることができますが、最終的に問題は残ります. マップ ビューは扱いにくく、Google マップ SDK に切り替えました。


切り替える前に行ったこと(それが役に立ちました):

  • 複数の画面で 1 つのマップ ビューを共有しました。MKMapViewWrapperView は、マップ ビューの割り当てが解除されると実際に「リーク」するため、非常に役立ちました。

  • 私たちは時々 mapType を切り替えました... *それは奇妙に聞こえます) マップビューがそのメモリの一部を解放します

于 2013-03-29T11:11:22.953 に答える