0
for(int i=0;i<[btv_view.aray_cord count];i++)
{
    //dm.title=[appDelegate.lB objectAtIndex:i ];

    [mapView addAnnotation:[btv_view.aray_cord objectAtIndex:i]]; 

}

我已经使用上面的代码在地图上添加多个引脚注释。现在我想在每个引脚注释上添加倾斜。怎么做?

4

1 回答 1

0

试试这个:

for (MKPlacemark* annotations in mapView.annotations) {
    annotations.title = @"your title";
}
于 2011-08-31T11:16:13.007 回答