Проблем с изгледите на анотация, изчезващи при двойно докосване на мащаба

Сблъсках се с проблем с изгледите на анотации в MapKit на iPhone. Успявам да начертая персонализирани изгледи на анотации на картата - няма проблем. Дори успявам да ги преначертая след плъзгане или мащабиране. Въпреки това, има случаи, в които преначертаването не работи: пример би бил увеличението с двойно докосване.

Прилагам някакъв код, където рисувам няколко правоъгълника на определени места на картата и когато мащабирам с помощта на жест с два пръста, всичко работи добре (т.е. правоъгълниците се преначертават). Въпреки това, когато докосна два пъти, правоъгълниците изчезват. Още по-странното е, че всички методи се извикват в реда, в който трябва, и накрая дори drawRect се извиква - но правоъгълниците не се изчертават.

И така, ето кода, моля, опитайте сами - мащабирането с два пръста работи, но мащабирането с двойно докосване не:

PlaygroundViewController.h

#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>

@interface PlaygroundViewController : UIViewController <MKMapViewDelegate>{
 MKMapView *mapView_;
 NSMutableDictionary* myViews_;
}

@end

PlaygroundViewController.m

#import "PlaygroundViewController.h"
#import "Territory.h"
#import "TerritoryView.h"

@implementation PlaygroundViewController

- (void)viewDidLoad {
    [super viewDidLoad];
 mapView_=[[MKMapView alloc] initWithFrame:self.view.bounds];
 [self.view insertSubview:mapView_ atIndex:0];
 mapView_.delegate = self;
 [mapView_ setMapType:MKMapTypeStandard];
    [mapView_ setZoomEnabled:YES];
    [mapView_ setScrollEnabled:YES];
 myViews_ = [[NSMutableDictionary alloc] init];
 for (int i = 0; i < 10; i++ ) {
  Territory *territory;
  territory = [[[Territory alloc] init] autorelease];
     territory.latitude_ = 40 + i;
  territory.longitude_ = -122 + i;
  [mapView_ addAnnotation:territory];

 }
}

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
 MKAnnotationView* territoryView = (MKAnnotationView*)[mapView dequeueReusableAnnotationViewWithIdentifier:@"Territory"];
 if (!territoryView){
  territoryView = [[[TerritoryView alloc] initWithAnnotation:annotation reuseIdentifier:@"Territory"] autorelease];
  Territory* currentTerritory = (Territory*) annotation;
  [myViews_ setObject:territoryView forKey:currentTerritory.territoryID_];
 }  
    else{
  territoryView.annotation = annotation;
 }  
 return territoryView; 
}

- (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated {
 for (NSObject* key in [myViews_ allKeys]) {
  TerritoryView* territoryView = [myViews_ objectForKey:key];
  [territoryView initRedraw];
 }
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}

- (void)dealloc {
    [super dealloc];
}

Територия.ч

#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>


@interface Territory : NSObject <MKAnnotation> {
 float latitude_;
 float longitude_;
 NSString* territoryID_;
}

@property (nonatomic) float latitude_;
@property (nonatomic) float longitude_;
@property (nonatomic, retain) NSString* territoryID_;


@end

Територия.м

#import "Territory.h"

@implementation Territory

@synthesize latitude_;
@synthesize longitude_;
@synthesize territoryID_;


- (CLLocationCoordinate2D)coordinate {
 CLLocationCoordinate2D coord_ = {self.latitude_, self.longitude_};
 return coord_;
}

-(id) init {
 if (self = [super init]) {
  self.territoryID_ = [NSString stringWithFormat:@"%p", self];
 }
 return self;
}


@end

TerritoryView.h

#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>

@interface TerritoryView : MKAnnotationView {

}

- (id)initWithAnnotation:(id <MKAnnotation>)annotation reuseIdentifier:(NSString *)reuseIdentifier;
- (void)initRedraw;

@end

TerritoryView.m

#import "TerritoryView.h"

@implementation TerritoryView

- (id)initWithAnnotation:(id <MKAnnotation>)annotation reuseIdentifier:(NSString *)reuseIdentifier {
    if ([super initWithAnnotation:annotation reuseIdentifier:@"Territory"]) {
  self.initRedraw;
    }
    return self;
}

- (void)initRedraw {
 self.frame = CGRectMake(0,0,40,40);
 [self setNeedsDisplay];
}

- (void)drawRect:(CGRect)rect {
 NSLog(@"in draw rect");
}

@end

Всяка помощ се оценява. Ето компресирания проект: връзка


person Community    schedule 03.10.2009    source източник
comment
Моля, публикувайте компресирания проект.   -  person Nikolai Ruhe    schedule 03.10.2009
comment
добре, добавена връзка към компресиран проект в края на публикацията.   -  person    schedule 06.10.2009


Отговори (1)


Имайте предвид, че произходът на кадъра е в координатната система на неговия родител, така че настройването му на нула вероятно го поставя извън екрана. Подозирам, че причината изобщо да работи е, че се нулира зад гърба ви в повечето ситуации, но не и в тези, в които се проваля.

замяна: self.frame = CGRectMake(0,0,40,40);

с: self.frame = CGRectMake(self.frame.origin.x,self.frame.origin.y,40,40);

person Harold    schedule 27.02.2010