我使用下面的代码在Google地图的标记中设置标题。
CLLocationCoordinate2D position = CLLocationCoordinate2DMake(lat, longi);
GMSMarker *marker = [GMSMarker markerWithPosition:position];
marker.title = self.TitleArray[i];
marker.map = mapView_;
}
有人能告诉我如何将标题对齐吗?
答案 0 :(得分:-1)
您可以使用
marker.title.textAlignment = UITextAlignmentRight;