更改当前位置标签文本
我已经用谷歌搜索了答案,但没有任何反应...... 我需要更改显示当前位置的蓝点的文本。 当你对你的位置进行地理定位时,iPhone会向你显示一个带有你的位置的蓝点,如果你点击它,它会向你显示一条文字,上面写着“当前位置”。我需要用诸如“你在这里”之类的内容来更改该文本。
我真的很感谢你的回答,谢谢。
I had already googled for an answer, but nothing happens...
I need to change the text of the blue point that show the current location.
When you geolocalize your position, the iPhone shows you a blue point with your position, if you tap it, its show you a text that says "Current Location". I need to change that text with something like... "Here you are", by example.
I really appreciate your answer, thx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那个蓝点是 MKUserLocation 的一个实例。您可以通过调用地图视图的
userLocation
属性来访问它。然后您可以更改其标题和副标题属性。这里是文档。
That blue dot is an instance of MKUserLocation. You can access it by calling the map view's
userLocation
property. You can then change it's title and subtitle properties.Here's the documentation.