gpt4 book ai didi

iphone - 当我们单击我的自定义注释图钉时,自定义标注 View 未显示在 View 中心(iphone)

转载 作者:行者123 更新时间:2023-12-01 16:47:44 25 4
gpt4 key购买 nike

enter image description here

当我们单击自定义注释图钉时,标注 View 不会显示在 View 中心,而是显示一半在 View 中,其余显示在 View 之外。请帮助我。
提前致谢

    CGSize const kMultiRowCalloutCellSize = {300,140};

- (id)initWithAnnotation:(id<MultiRowAnnotationProtocol>)annotation reuseIdentifier:(NSString *)reuseIdentifier onCalloutAccessoryTapped:(MultiRowAccessoryTappedBlock)block {
self = [super initWithAnnotation:(id<MKAnnotation>)annotation reuseIdentifier:reuseIdentifier];
if (self) {
self.contentHeight = 80.0;
_yShadowOffset = 6;
self.offsetFromParent = CGPointMake(78, -14); //this works for MKPinAnnotationView
self.enabled = NO;
self.backgroundColor = [UIColor clearColor];
self.cellInsetX = 15;
self.cellOffsetY = 10;
self.onCalloutAccessoryTapped = block;
[self setTitleWithAnnotation:annotation];
[self setCalloutCellsWithAnnotation:annotation];
}
return self;
}

最佳答案

annotationView.centerOffset = CGPointMake( annotationView.centerOffset.x + annotationView.image.size.width/2, annotationView.centerOffset.y - annotationView.image.size.height/2 );

在下面提到的委托(delegate)方法中添加这些行。
- (MKAnnotationView *)mapView:(MKMapView *)theMapView viewForAnnotation:(id <MKAnnotation>)annotation

关于iphone - 当我们单击我的自定义注释图钉时,自定义标注 View 未显示在 View 中心(iphone),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18584442/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com