如何减少MKOverlay圆的厚度?

时间:2018-06-15 13:55:15

标签: ios iphone ipad mkmapview

我在委托函数中使用以下代码向MKMapView添加了一个圆圈:

-(MKOverlayRenderer *)mapView:(MKMapView *)mapView rendererForOverlay:(id<MKOverlay>)overlay{

    MKCircleRenderer *circleView = [[MKCircleRenderer alloc] initWithOverlay:overlay];
    circleView.strokeColor = [UIColor blueColor];

    return circleView;
}

我想减少厚度,有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

我找到了解决方案,MKCircleRenderer类本身具有增加/减少线宽的属性:

circleView.lineWidth = 2;