如何在ios中将谷歌地图标记的标题与RTL的RTL对齐?

时间:2015-10-10 06:11:13

标签: ios8 nsstring google-maps-sdk-ios

我使用下面的代码在Google地图的标记中设置标题。

  CLLocationCoordinate2D position = CLLocationCoordinate2DMake(lat, longi);
    GMSMarker *marker = [GMSMarker markerWithPosition:position];
    marker.title = self.TitleArray[i];
    marker.map = mapView_;
}

有人能告诉我如何将标题对齐吗?

1 个答案:

答案 0 :(得分:-1)

您可以使用

   marker.title.textAlignment = UITextAlignmentRight;