如何在带有部分的表格视图单元格中显示地图视图?
我有一个带有部分的表格视图。第一个部分有 4 行,其中带有标签。 在第二部分和第三部分中,我有自定义按钮。在第四部分中,我想显示 地图视图显示用户的当前位置。有人知道我该怎么做吗? 有教程或示例代码吗?
I have one tableview with sections.First section there are 4 rows with label in it.
In second and third section i have custom button.In fourth section i want to display
mapview to display current location of user.does anyone have any idea how can i do it.
Any tutorials or sample code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建自定义
UITableViewCell
(info) 并向其添加MKMapView
。然后只需配置您的地图视图并实现MKMapView
委托响应更改。You could create a custom
UITableViewCell
(info) and add anMKMapView
to it. Then simply configure your map view and implement theMKMapView
delegate to respond to changes.您需要设置 delegate &在 cell 的 contentView 中添加 mapView 。
要在 MapView 上删除注释,请使用此委托方法:
希望这能解决您的问题。
YOu need to set delegate & add mapView in the contentView of cell .
To drop Annotation on MapView use this Delegate MEthod:
Hope this will solve your problem.