地图套件:地图前面显示的翻转视图上的信息按钮
我的应用程序上有一个地图套件,但信息按钮隐藏在其后面,我可以做些什么,使信息按钮位于地图视图的前面吗???
谢谢, 乔恩
I have a mapkit on my app but the info button is hidden behind it, can I do something so the info button is in front of the map view???
Thanks,
Jon
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用界面生成器,请将视图类型更改为树(也可以在网格模式下执行此操作)并重新排列视图上的项目列表,以便信息按钮位于地图视图上方(不记得是否z 顺序是从上到下或从下到上)。
如果您在代码中添加按钮。它应该自动位于前面,但如果这不起作用,您可以随时在其父视图上调用 BringSubviewToFront:infoButton 。
If your using interface builder, change the view type to a tree (might be able to do this in grid mode as well) and rearrange the list of items on the view so that the info button is above the mapView (can't remember if z-order is top-to-bottom or bottom-to-top).
If your adding the button in code. It should be in front automatically but if thats not working, you can always call bringSubviewToFront:infoButton on its parent view.