MapView Drop and Drag Pin - Пользовательский MKAnnotationView iOS 5 - PullRequest
0 голосов
/ 19 октября 2011

Я часами искал, пытаясь найти и обновить что-нибудь для работы на iOS 5 для перетаскивания. Я думаю, что я довольно близок ... но стою при попытке инициировать пользовательскую аннотацию.

Вот мой класс

.h
@interface AnnotationView : MKAnnotationView ...

.m
@interface AnnotationView () 
@property (nonatomic, assign) BOOL hasBuiltInDraggingSupport;
@end

@implementation AnnotationView
@synthesize hasBuiltInDraggingSupport, mapView;


- (id)initWithAnnotation:(id <MKAnnotation>)annotation reuseIdentifier:(NSString *)reuseIdentifier {

self.hasBuiltInDraggingSupport = [[MKAnnotationView class] instancesRespondToSelector:NSSelectorFromString(@"isDraggable")];

if (self.hasBuiltInDraggingSupport) {
    if ((self = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:reuseIdentifier])) {
        [self performSelector:NSSelectorFromString(@"setDraggable:") withObject:[NSNumber numberWithBool:YES]];
    }
}

self.canShowCallout = YES;
return self;
}
@end

И проблема на линии

self = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:reuseIdentifier]

там написано: Несовместимые типы указателей, присваиваемые AnnotationView * __strong из MKPinAnnotationView *

Кроме того, следующая строка получает предупреждение для

[self performSelector:NSSelectorFromString(@"setDraggable:") withObject:[NSNumber numberWithBool:YES]];

Thx

В предупреждении говорится, что setDraggable: селектор неизвестен ... но не должен наследоваться от

1 Ответ

1 голос
/ 11 ноября 2011
- (MKAnnotationView *)mapView:(MKMapView *)theMapView viewForAnnotation:(id<MKAnnotation>)annotation
{
    MKPinAnnotationView* annView = (MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:@"xxx"];
    // check conditions for class of annview or other    
    annView.draggable = YES;
}
...