因此,MKAnnotation的centerOffset属性似乎无法在iOS7上使用自定义注释图像...
以下是在iOS6(有效)和iOS7(无效)中拍摄的图像。
你们知道是什么引起了这个问题吗?有没有解决办法?
这并不是说iOS7中的centerOffset值是不正确的,而是偏移量不会改变作为值接收的任何内容。
编辑:示例代码:
- (void)viewDidLoad
{
[super viewDidLoad];
MapAnnotation *ann = [[MapAnnotation alloc] initWithName:@"Some annotation" latitude:46.910068 longitude:17.881984 tag:1 type:MAP_ANNOTATION_TYPE_REQUEST];
self.mapView.delegate = self;
[self.mapView addAnnotation:ann];
MKCircle *circle = [MKCircle circleWithCenterCoordinate:CLLocationCoordinate2DMake(46.910068, 17.881984) radius:10];
[self.mapView addOverlay:circle];
}
- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id<MKOverlay>)overlay {
if ([overlay isKindOfClass:[MKCircle class]]) {
MKCircleView *cv = [[MKCircleView alloc] initWithCircle:overlay];
cv.fillColor = [UIColor colorWithRed:247/255.f green:85/255.f blue:86/255.f alpha:0.2];
cv.lineWidth = 1;
cv.strokeColor = [UIColor colorWithRed:247/255.f green:85/255.f blue:86/255.f alpha:1.0];
return cv;
}
return nil;
}
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation {
//User location
if ([annotation isKindOfClass:[MKUserLocation class]])
return nil;
//Annotations
MKPinAnnotationView *pinAnnotation = nil;
if(annotation != self.mapView.userLocation)
{
// Dequeue the pin
static NSString *defaultPinID = @"myPin";
pinAnnotation = (MKPinAnnotationView *)[self.mapView dequeueReusableAnnotationViewWithIdentifier:defaultPinID];
if ( pinAnnotation == nil )
pinAnnotation = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:defaultPinID];
pinAnnotation.image = [UIImage imageNamed:@"subscription-map-icon"];
pinAnnotation.centerOffset = CGPointMake(0, -20);
}
return pinAnnotation;
}
MapAnnotation
是一个简单的注释类,具有一些不相关的属性。 最佳答案
编辑:
正如@Anna Karenina使我意识到的那样,我正在使用MKPinAnnotationView而不是MKAnnotationView 。显然,MKPinAnnotation在centerOffset中有待烘焙,这就是奇怪行为背后的原因。
原答复:
对于有相同问题的任何人,这似乎是iOS7中的错误。
解决方法:
子类MKAnnotationView
并覆盖setter method
属性的centerOffset
。
.h头文件中没有新内容,因此.m实现文件应如下所示:
#import "MyAnnotationView.h"
@implementation MyAnnotationView
@synthesize centerOffset = _centerOffset;
-(id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
}
return self;
}
- (void)setCenterOffset:(CGPoint)centerOffset {
_centerOffset = centerOffset;
}
@end
不要错过顶部的
@synthesize
部分! 关于ios - iOS7:MKAnnotation centerOffset?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19634075/