在点击注释点,开发人员创建的内置视图还是由开发人员创建的视图时,是否显示此弹出窗口?
MKPointAnnotation *annotationPoint = [[MKPointAnnotation alloc] init];
annotationPoint.coordinate = annotationCoord;
annotationPoint.subtitle = user.purchasedLocation;
[mapView addAnnotation:annotationPoint];
我想在地图视图中创建一个类似于上图所示的弹出框。 当我将上述代码添加到我的应用程序时,它只显示了街道地址。 是否有内置的方法在MapKit框架中显示这种类型的弹出窗口,如上图所示的用户图像和箭头图像?
感谢。