MKMapViewcornerRadius仅适用于左上角
我向 MKMapView 层添加了一个cornerRadius,类似于
[self.routeMapView layer].cornerRadius = 20.0f;
此属性仅对左上角有影响。休息根本没有改变。
不知道有没有办法让mapView变圆角;
i added a cornerRadius to layer of MKMapView something like
[self.routeMapView layer].cornerRadius = 20.0f;
this property effects only for upper left corner. Rest is not changed at all.
I dont know if there is a way to make mapView rounded;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用容器视图并为容器视图的图层指定cornerRadius。
Use a container view and specify the
cornerRadius
for the layer of the container view.