如何在之前作为 MKPinAnnotationView 的 leftCalloutAccessoryView 放置的按钮下添加文本
How to add text under the button previously placed as leftCalloutAccessoryView of MKPinAnnotationView
我想基本上这样做:ETA info under the button with a car image
如何在按钮底部添加文本?提前致谢。
我很久以前就找到了解决方法,但忘记在这里提及了。
这里是:
只需创建一个 Vertical StackView
,将其对齐设置为 Center
,将分布设置为 Fill
,然后将您的 label
和 image
放入其中。首先隐藏你的label
。将 StackView
分配为 leftCalloutAccessoryView
。当您获得 ETA 信息时,只需在 动画代码中 label
取消隐藏 。
就是这样!它的行为就像在 Apple 的地图应用程序中一样。
我想基本上这样做:ETA info under the button with a car image
如何在按钮底部添加文本?提前致谢。
我很久以前就找到了解决方法,但忘记在这里提及了。
这里是:
只需创建一个 Vertical StackView
,将其对齐设置为 Center
,将分布设置为 Fill
,然后将您的 label
和 image
放入其中。首先隐藏你的label
。将 StackView
分配为 leftCalloutAccessoryView
。当您获得 ETA 信息时,只需在 动画代码中 label
取消隐藏 。
就是这样!它的行为就像在 Apple 的地图应用程序中一样。