初始化地图,但不要让它适合屏幕视图边界

发布于 2024-11-04 11:00:12 字数 172 浏览 1 评论 0原文

mapView =[[MKMapView alloc]initWithFrame:self.view.bounds];

这使得地图视图出现在整个屏幕上,因此它隐藏了我的 UINavigationBar 我怎样才能在不隐藏地图的情况下显示它?提前谢谢:)

mapView =[[MKMapView alloc]initWithFrame:self.view.bounds];

this make the mapView on all the screen, so it hides my UINavigationBar how can i show my map without hiding it please ? thx in advance :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏见 2024-11-11 11:00:12

试试这个 -

mapView =[[MKMapView alloc]initWithFrame:CGRectMake(0.0f,0.0f,self.view.frame.size.width,self.view.frame.size.height)];

try this one -

mapView =[[MKMapView alloc]initWithFrame:CGRectMake(0.0f,0.0f,self.view.frame.size.width,self.view.frame.size.height)];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文