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